Created
August 1, 2012 19:18
-
-
Save mrosset/3229903 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
while inotifywait -e modify -r *.go; do | |
go build || true | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
you have no idea how many hours I'm going to save after seeing this :)
for OSX users, use https://github.com/sschober/kqwait instead of inotifywait