File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,7 @@ runCommand "check-stylish" {
7
7
} ''
8
8
unpackPhase
9
9
cd $sourceRoot
10
- fd . './io-sim' -e hs -E Setup.hs -X stylish-haskell -c .stylish-haskell.yaml -i
11
- fd . './io-classes' -e hs -E Setup.hs -X stylish-haskell -c .stylish-haskell.yaml -i
12
- fd . './strict-stm' -e hs -E Setup.hs -X stylish-haskell -c .stylish-haskell.yaml -i
10
+ bash ./scripts/check-stylish.sh
13
11
diff -ru $src .
14
12
15
13
EXIT_CODE=$?
Original file line number Diff line number Diff line change
1
+ #! /usr/bin/env bash
2
+
3
+ set -euo pipefail
4
+ export LC_ALL=C.UTF-8
5
+
6
+ fd . ' ./io-sim' -e hs -E Setup.hs -X stylish-haskell -c .stylish-haskell.yaml -i
7
+ fd . ' ./io-classes' -e hs -E Setup.hs -X stylish-haskell -c .stylish-haskell.yaml -i
8
+ fd . ' ./strict-stm' -e hs -E Setup.hs -X stylish-haskell -c .stylish-haskell.yaml -i
You can’t perform that action at this time.
0 commit comments