3 lines
106 B
Bash
3 lines
106 B
Bash
#!/usr/bin/env bash
|
|
cd $(dirname "$0")
|
|
[ "$(git pull)" == "Already up to date." ] || hugo >/dev/null 2>&1
|