From b2946a390227330ffbca02ffb37c7a4b5b54c829 Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Sun, 23 Dec 2018 01:34:01 +0200 Subject: [PATCH] try running nsis on windows --- build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 22a5b9f1..9a54b610 100644 --- a/build.gradle +++ b/build.gradle @@ -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") } }