mirror of
https://github.com/TheAnachronism/docspell.git
synced 2024-11-13 02:31:10 +00:00
10 lines
183 B
Bash
10 lines
183 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
CMD="elm make --output site/static/js/bundle.js --optimize elm/Main.elm"
|
||
|
$CMD
|
||
|
|
||
|
inotifywait -m -e close_write -r elm/ |
|
||
|
while read f; do
|
||
|
$CMD
|
||
|
done
|