diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-09-11 13:46:29 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-09-11 13:46:29 -0400 |
commit | af48274a450bcc4ad3863686473250f38d972dc6 (patch) | |
tree | 4058c39ad16632aa53d119bd08ce09f4fa6edba6 /standalone | |
parent | 9b8c7d90e9c62658e9c74d760a8f8a92932fe0bb (diff) |
fix PATH
zcat is needed from cygwin to build
Diffstat (limited to 'standalone')
-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 91037eec3..a35df65a1 100755 --- a/standalone/windows/build.sh +++ b/standalone/windows/build.sh @@ -76,7 +76,7 @@ fi # Build the installer cabal install nsis ghc -fforce-recomp --make Build/NullSoftInstaller.hs -fno-warn-tabs -Build/NullSoftInstaller.exe +PATH=".:/c/cygwin/bin:$PATH" Build/NullSoftInstaller.exe rm -f last-incremental-failed |