try running nsis on windows

This commit is contained in:
Anton Keks 2018-12-23 01:34:01 +02:00
parent 5e22f46636
commit b2946a3902

View File

@ -224,7 +224,9 @@ task 'win-installer'(dependsOn: ['win32', 'win64']) {
}
}
else {
ant.exec(dir: "${installerDir}", executable: "NSISPortable/App/NSIS/makensis.exe") {
ant.exec(dir: "${installerDir}", executable: "cmd") {
ant.arg(value: "/c")
ant.arg(value: "NSISPortable/App/NSIS/makensis.exe")
ant.arg(value: "Installer/Installer.nsi")
}
}