aboutsummaryrefslogtreecommitdiff
path: root/scripts/rebuild.sh
blob: 0f0f7002734eb5e34be87bd31edcc29df5cfcba9 (plain)
1
2
3
4
5
6
7
#!/usr/bin/env

inotifywait -m bin/ -m internal/embedded/generate.go -m blog/ -m talks/ -m gallery/ -e create -e moved_to |
    while read path action file; do
        echo "The file '$file' appeared in directory '$path' via '$action'"
        go generate -v ./...
    done