cach-radio/serve.sh

11 lines
88 B
Bash
Raw Normal View History

#!/bin/sh
set -xe
if [ -z $1 ]
then
hugo serve -b ${HUGO_HOST}
else
exec hugo $@
fi