mirror of
https://github.com/peter-tanner/peter-tanner.github.io.git
synced 2024-11-30 20:10:18 +08:00
51 lines
817 B
Plaintext
51 lines
817 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
#
|
||
|
# Run jekyll serve and then launch the site
|
||
|
|
||
|
prod=false
|
||
|
command="bundle exec jekyll s -l"
|
||
|
host="127.0.0.1"
|
||
|
|
||
|
help() {
|
||
|
echo "Usage:"
|
||
|
echo
|
||
|
echo " bash /path/to/run [options]"
|
||
|
echo
|
||
|
echo "Options:"
|
||
|
echo " -H, --host [HOST] Host to bind to."
|
||
|
echo " -p, --production Run Jekyll in 'production' mode."
|
||
|
echo " -h, --help Print this help information."
|
||
|
}
|
||
|
|
||
|
while (($#)); do
|
||
|
opt="$1"
|
||
|
case $opt in
|
||
|
-H | --host)
|
||
|
host="$2"
|
||
|
shift 2
|
||
|
;;
|
||
|
-p | --production)
|
||
|
prod=true
|
||
|
shift
|
||
|
;;
|
||
|
-h | --help)
|
||
|
help
|
||
|
exit 0
|
||
|
;;
|
||
|
*)
|
||
|
echo -e "> Unknown option: '$opt'\n"
|
||
|
help
|
||
|
exit 1
|
||
|
;;
|
||
|
esac
|
||
|
done
|
||
|
|
||
|
command="$command -H $host"
|
||
|
|
||
|
if $prod; then
|
||
|
command="JEKYLL_ENV=production $command"
|
||
|
fi
|
||
|
|
||
|
echo -e "\n> $command\n"
|
||
|
eval "$command"
|