cach-radio/serve.sh

11 lines
88 B
Bash
Executable File

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