Skip to content

Instantly share code, notes, and snippets.

@hisusqristos
Created September 9, 2023 16:03
Show Gist options
  • Save hisusqristos/ab08edb62390e65910bfa53d689b2529 to your computer and use it in GitHub Desktop.
Save hisusqristos/ab08edb62390e65910bfa53d689b2529 to your computer and use it in GitHub Desktop.
#!/bin/sh
while inotifywait -e modify ./src; do
ELM_FILES=$(find ./src -name '*.elm')
echo "Watching $ELM_FILES"
elm make $ELM_FILES
done
@hisusqristos
Copy link
Author

mersi andranik

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment