her.esy.fun/engine/serve.sh
Yann Esposito (Yogsototh) 0fcf693ff4
a few minor fixes
2021-04-27 19:38:24 +02:00

14 lines
202 B
Bash
Executable file

#!/usr/bin/env bash
cd "$(git rev-parse --show-toplevel)" || exit 1
if (( $# == 0 )); then
webdir="_site"
else
webdir="$1"
fi
cd $webdir && \
echo "Serving: $webdir" && \
http-server -p 3000