feat: Mise en place de l'architecture
This commit is contained in:
24
run
Executable file
24
run
Executable file
@ -0,0 +1,24 @@
|
||||
#!/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 "|_| \_\___||___/_|_____|_|\___|_| |_|"
|
||||
echo
|
||||
echo
|
||||
|
||||
if [ $# -ge 1 ]; then
|
||||
$@
|
||||
else
|
||||
help_generic
|
||||
fi
|
||||
|
||||
end
|
Reference in New Issue
Block a user