From 17900dc6d217e08fba66fcc9fbdc86cc67788f50 Mon Sep 17 00:00:00 2001 From: Anton Keks Date: Thu, 20 Jan 2022 18:28:47 +0200 Subject: [PATCH] copy any produced exe file --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 7bb33aa0..53b4fe94 100644 --- a/build.gradle +++ b/build.gradle @@ -326,7 +326,7 @@ task 'win-installer'(dependsOn: ['win32', 'win64']) { ant.arg(value: "Installer/Installer.nsi") } } - ant.move(file: "${installerDir}/ipscan-${version}-setup.exe", todir:"build/libs") + ant.move(file: "${installerDir}/ipscan-*-setup.exe", todir: "build/libs") ant.exec(command: "git checkout ${installerDir}/InstallerConfig.nsh") } }