File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ and is still highly experimental.
17
17
Make sure you're plugged in and have screen/tmux in place,
18
18
then re-run with $0 --run to continue.
19
19
20
- Also note that dist* will be deleted.
20
+ Also note that dist*/ and .stack-work/ will be deleted.
21
21
EOF
22
22
exit 0
23
23
}
24
24
25
- echo " Deleting 'dist' and 'dist-newstyle'..."
26
- rm -rf dist dist-newstyle
25
+ echo " Deleting 'dist', 'dist-newstyle', and '.stack-work '..."
26
+ rm -rf dist dist-newstyle .stack-work
27
27
28
28
execs=$( find . -name shellcheck)
29
29
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ die() { echo "$*" >&2; exit 1; }
15
15
command -v stack ||
16
16
die " stack is missing"
17
17
18
- stack setup || die " Failed to setup with default resolver"
18
+ stack setup --allow-different-user || die " Failed to setup with default resolver"
19
19
stack build --test || die " Failed to build/test with default resolver"
20
20
21
21
# Nice to haves, but not necessary
You can’t perform that action at this time.
0 commit comments