Created
September 9, 2023 16:03
-
-
Save hisusqristos/ab08edb62390e65910bfa53d689b2529 to your computer and use it in GitHub Desktop.
This file contains 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/sh | |
while inotifywait -e modify ./src; do | |
ELM_FILES=$(find ./src -name '*.elm') | |
echo "Watching $ELM_FILES" | |
elm make $ELM_FILES | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
mersi andranik