summaryrefslogtreecommitdiff
path: root/update.sh
blob: 655f559fd3908f0009495eeef9b3e3272b8d0853 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash

# failures are evil
set -e

# update our clone
git submodule update --init --recursive
git submodule update --recursive --remote
git pull

# rerun hugo generator
./hugo

# current date
date -Iseconds