File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 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.
1717Make sure you're plugged in and have screen/tmux in place,
1818then re-run with $0 --run to continue.
1919
20- Also note that dist* will be deleted.
20+ Also note that dist*/ and .stack-work/ will be deleted.
2121EOF
2222exit 0
2323}
2424
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
2727
2828execs=$( find . -name shellcheck)
2929
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ die() { echo "$*" >&2; exit 1; }
1515command -v stack ||
1616 die " stack is missing"
1717
18- stack setup || die " Failed to setup with default resolver"
18+ stack setup --allow-different-user || die " Failed to setup with default resolver"
1919stack build --test || die " Failed to build/test with default resolver"
2020
2121# Nice to haves, but not necessary
You can’t perform that action at this time.
0 commit comments