diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-03-19 15:55:21 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-03-19 15:55:21 -0400 |
commit | 95394be097d4274cc5917e26b6b5340b38b4788b (patch) | |
tree | d7da28490e59de4325da5d0e33ec68562e8c83a4 /standalone/windows | |
parent | 0aa1e20e3d0dd5f07a7bdebd10a9ec1541c5f922 (diff) |
run cabal update before trying to install build deps
Diffstat (limited to 'standalone/windows')
-rwxr-xr-x | standalone/windows/build-simple.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/standalone/windows/build-simple.sh b/standalone/windows/build-simple.sh index 77cb146e7..ade21ce6d 100755 --- a/standalone/windows/build-simple.sh +++ b/standalone/windows/build-simple.sh @@ -21,6 +21,7 @@ withcygpreferred () { # Install haskell dependencies. # cabal install is not run in cygwin, because we don't want configure scripts # for haskell libraries to link them with the cygwin library. +cabal update || true cabal install --only-dependencies || true # Build git-annex |