mirror of
https://github.com/CrystalSplitter/ghcitui.git
synced 2024-11-22 15:06:25 +03:00
9 lines
201 B
Bash
Executable File
9 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if ! which fswatch >/dev/null; then
|
|
printf "%s\n" "'fswatch' is needed to run this script"
|
|
exit 1
|
|
fi
|
|
|
|
fswatch -n 64 -ro -l1 -m poll_monitor app/ lib/ *.cabal | xargs -I{} cabal test
|