owncast-webhook/bin/watch.sh
2025-08-27 12:41:31 +02:00

13 lines
265 B
Bash
Executable file

#!/bin/sh
export TEMPL_EXPERIMENT=rawgo
while true; do
rm -f cmd/server/rice-box.go
./node_modules/.bin/webpack
make tpl
screen -S budget -d -m go run ./cmd/server
notify-send "Budget" "Ready!"
inotifywait -r . -e close_write
screen -X -S budget quit
done