10 lines
194 B
Bash
Executable File
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 $@
|