17 lines
254 B
Plaintext
17 lines
254 B
Plaintext
|
#!/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
|