diff options
author | Joey Hess <joey@kitenet.net> | 2013-12-06 13:57:33 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-12-06 13:57:33 -0400 |
commit | 7ea28e4c6ef33591abaaff717a378da825d33f25 (patch) | |
tree | 9e1fec2a6de59f1d2313c12f1928b281f12cb9a0 /standalone/windows | |
parent | 63ac1fb2503a80cd172279a9dac65dbfa3a9ad10 (diff) |
allow dep install to fail
(eg, webdav is broken right now, this should not defeat the build)
Diffstat (limited to 'standalone/windows')
-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 7aca881ec..6b0c7ae11 100755 --- a/standalone/windows/build.sh +++ b/standalone/windows/build.sh @@ -32,7 +32,7 @@ rm -rf /c/Users/jenkins/AppData/Roaming/cabal /c/Users/jenkins/AppData/Roaming/g # for haskell libraries to link them with the cygwin library. cabal update || true -cabal install --only-dependencies +cabal install --only-dependencies || true # Detect when the last build was an incremental build and failed, # and try a full build. Done this way because this shell seems a bit |