summaryrefslogtreecommitdiff
path: root/Build/NullSoftInstaller.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-05-17 14:06:47 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-05-17 14:06:47 -0400
commit4b36481e24fbe7ed3cad2b159bed14c8150e9a67 (patch)
tree98a2b516c8aaed44180cea60ac96e618dfe75ce5 /Build/NullSoftInstaller.hs
parentb266b9a078393f54a2d78a2e2fc12faf4e1fdeae (diff)
specify makensis path in build script
Diffstat (limited to 'Build/NullSoftInstaller.hs')
-rw-r--r--Build/NullSoftInstaller.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/NullSoftInstaller.hs b/Build/NullSoftInstaller.hs
index 8894585b6..a2259caa8 100644
--- a/Build/NullSoftInstaller.hs
+++ b/Build/NullSoftInstaller.hs
@@ -36,7 +36,7 @@ main = do
let license = tmpdir </> licensefile
mustSucceed "sh" [Param "-c", Param $ "zcat standalone/licences.gz > '" ++ license ++ "'"]
writeFile nsifile $ makeInstaller gitannex license
- mustSucceed "C:\\Program Files\\NSIS\\makensis" [File nsifile]
+ mustSucceed "makensis" [File nsifile]
removeFile nsifile -- left behind if makensis fails
where
nsifile = "git-annex.nsi"