watch 272 B raw
1
#!/bin/sh
2
# Rebuild and restart on source changes.
3
# Requires `entr(1)`.
4
find . -name '*.go' -o -name '*.html' -o -name '*.css' \
5
  | entr -r go run . -dev -scan-path ~/src/radiant -non-bare -title "code.radiant.computer" -description "Radiant computer repositories" "$@"