16 lines
213 B
Bash
Executable file
16 lines
213 B
Bash
Executable file
#!/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
|