diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-30 14:11:40 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-30 14:11:40 -0400 |
commit | fc55ad5a9fd7f6a9dc04e0497e081be9017c3043 (patch) | |
tree | 2e8383e37a5e4bf0f12b6a89edc0fe0d5e8f6669 | |
parent | 0d06f8fbda77634b5dc9851e5fa9dac5e4362887 (diff) |
work around windows apparent random dislike of removing files
-rwxr-xr-x | standalone/windows/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh index 24e43bf9a..9473b9257 100755 --- a/standalone/windows/build.sh +++ b/standalone/windows/build.sh @@ -43,7 +43,7 @@ cabal install --only-dependencies || true if [ -e last-incremental-failed ]; then cabal clean || true # windows breakage.. - rm -rf dist + rm -rf dist dist.old || mv -v dist dist.old fi touch last-incremental-failed |