From f2abeaae12dfd7012febb038a2efefb99ae732f9 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 23 Sep 2025 13:02:24 -0400 Subject: [PATCH] fix windows build --- Build/NullSoftInstaller.hs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Build/NullSoftInstaller.hs b/Build/NullSoftInstaller.hs index b2e1209878..c77e573569 100644 --- a/Build/NullSoftInstaller.hs +++ b/Build/NullSoftInstaller.hs @@ -61,7 +61,10 @@ main = do let gitannexcmd = tmpdir literalOsPath "git-annex.cmd" F.writeFileString gitannexcmd "git annex %*" F.writeFileString (toOsPath nsifile) $ makeInstaller - gitannex gitannexcmd license htmlhelp (winPrograms ++ magicDLLs') magicShare' + gitannex (fromOsPath gitannexcmd) license + (fromOsPath htmlhelp) + (winPrograms ++ magicDLLs') + magicShare' [ webappscript, autostartscript ] mustSucceed "makensis" [File nsifile] removeFile (toOsPath nsifile) -- left behind if makensis fails