feat: Ajout de la configuration
This commit is contained in:
25
run
Normal file
25
run
Normal file
@ -0,0 +1,25 @@
|
||||
#!/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
|
||||
|
||||
echo " _"
|
||||
echo " | |"
|
||||
echo "__ _____| | _____"
|
||||
echo "\ \ /\ / / _ \ |/ / _ \\"
|
||||
echo " \ V V / __/ < (_) |"
|
||||
echo " \_/\_/ \___|_|\_\___/"
|
||||
echo
|
||||
echo
|
||||
|
||||
if [ $# -ge 1 ]; then
|
||||
$@
|
||||
else
|
||||
help_generic
|
||||
fi
|
||||
|
||||
end
|
Reference in New Issue
Block a user