chore: Upgrade process

This commit is contained in:
2021-04-27 11:10:34 +02:00
parent 76873d138b
commit e50b32a456
12 changed files with 57 additions and 85 deletions

16
run Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
# -e Exit immediately if a command exits with a non-zero status.
# -u Treat unset variables as an error when substituting.
set -eu
. ./.env
. ./themes/hugo-theme-lowtech/scripts/run
if [ $# -ge 1 ]; then
$@
else
help_generic
fi
end