We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e019840 commit 05ccaf3Copy full SHA for 05ccaf3
stylize.sh
@@ -11,6 +11,7 @@ then
11
stack install --resolver "lts-$STACKVER" stylish-haskell --no-terminal
12
fi
13
14
+command -v stylish-haskell >/dev/null 2>&1 || { echo "Could not find stylish-haskell. Aborting." >&2; exit 1; }
15
16
find . -name \*.hs -and \( -not \( -name Setup.hs -or -path ./.cabal-sandbox/\* -or -path ./dist/\* \) \) | xargs stylish-haskell -i > stylish-out 2>&1
17
0 commit comments