13 lines
265 B
Bash
Executable file
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
|