Files
gonic/_do_run_server_live
2019-08-21 15:04:40 +01:00

10 lines
194 B
Bash
Executable File

#!/bin/sh
if ! command -v 'entr' > /dev/null; then
echo 'please install `entr`' >&2
echo 'http://eradman.com/entrproject/' >&2
exit 1
fi
find assets/ | entr -r ./_do_run_server $@