summaryrefslogtreecommitdiff
path: root/update.sh
blob: 1f97ab2d5b72be978ec027c452495eb07963204b (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 -Iminutes