From 031fb1fc91afb7dafdd929d9fbdcba4f7652b589 Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Thu, 20 Jan 2022 22:40:31 +0200 Subject: [PATCH] try starting nsis with cmd --- build.gradle | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 5e24cfb6..5eb56370 100644 --- a/build.gradle +++ b/build.gradle @@ -296,9 +296,7 @@ task 'win-installer'(dependsOn: ['win32', 'win64']) { exec("wine $nsis/makensis.exe Installer/Installer.nsi", installerDir) } else { - println(exec("cmd /c dir", installerDir, false)) - println(exec("cmd /c dir $nsis", installerDir, false)) - exec("$nsis\\makensis.exe Installer\\Installer.nsi", installerDir) + exec("cmd /c $nsis\\makensis.exe Installer\\Installer.nsi", installerDir) } ant.move(file: "${installerDir}/ipscan-${version}-setup.exe", todir: "build/libs") exec("git checkout ${installerDir}/InstallerConfig.nsh")