diff --git a/update.sh b/update.sh new file mode 100755 index 0000000..bed4a5a --- /dev/null +++ b/update.sh @@ -0,0 +1,12 @@ +#!/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