typo
This commit is contained in:
parent
89719063f6
commit
5a31a0c33b
1 changed files with 3 additions and 3 deletions
|
@ -34,7 +34,7 @@ main = do
|
||||||
let gitannex = tmpdir </> "git-annex.exe"
|
let gitannex = tmpdir </> "git-annex.exe"
|
||||||
mustSucceed "ln" [File "dist/build/git-annex/git-annex.exe", File gitannex]
|
mustSucceed "ln" [File "dist/build/git-annex/git-annex.exe", File gitannex]
|
||||||
let license = tmpdir </> "git-annex-licenses.txt"
|
let license = tmpdir </> "git-annex-licenses.txt"
|
||||||
mustSucceed "sh" [Param "-c", Param "zcat standalone/licences.gz >" ++ license]
|
mustSucceed "sh" [Param "-c", Param $ "zcat standalone/licences.gz > '" ++ license ++ "'"]
|
||||||
writeFile nsifile $ makeInstaller gitannex license
|
writeFile nsifile $ makeInstaller gitannex license
|
||||||
mustSucceed "C:\\Program Files\\NSIS\\makensis" [File nsifile]
|
mustSucceed "C:\\Program Files\\NSIS\\makensis" [File nsifile]
|
||||||
removeFile nsifile -- left behind if makensis fails
|
removeFile nsifile -- left behind if makensis fails
|
||||||
|
@ -76,7 +76,7 @@ makeInstaller gitannex license = nsis $ do
|
||||||
|
|
||||||
-- Pages to display
|
-- Pages to display
|
||||||
page Directory -- Pick where to install
|
page Directory -- Pick where to install
|
||||||
page License license
|
page $ License license
|
||||||
page InstFiles -- Give a progress bar while installing
|
page InstFiles -- Give a progress bar while installing
|
||||||
-- Groups of files to install
|
-- Groups of files to install
|
||||||
section "programs" [] $ do
|
section "programs" [] $ do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue