summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2017-10-16 15:11:50 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2017-10-16 15:11:50 -0400
commit51ed4eb98b08c08c2244fbe2bd59d05d8ff4031d (patch)
tree74860f764eeffd5ae8292d1556cd92ef986a91a9
parentcb83433a945162bf8615090e2418379d10da5759 (diff)
try working around strange cabal install bug for xss-sanitize
-rwxr-xr-xstandalone/windows/build.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh
index 28f6f073e..01d53fc46 100755
--- a/standalone/windows/build.sh
+++ b/standalone/windows/build.sh
@@ -39,7 +39,10 @@ rm -f git-annex-installer.exe
# for haskell libraries to link them with the cygwin library.
cabal update || true
-cabal install xss-sanitize
+# workaround strange cabal install bug for xss-sanitize
+git clone https://github.com/yesodweb/haskell-xss-sanitize xss-sanitize
+(cd xss-sanitize && cabal install)
+
cabal install --only-dependencies \
--constraint='persistent-sqlite ==2.2' \
--constraint='cryptonite ==0.7' \