installing an ico file separately is probably not needed - it is already part of the exe file

This commit is contained in:
Anton Keks 2022-01-21 10:37:42 +02:00
parent 62ace864dc
commit ddfa07a98a

View File

@ -292,7 +292,6 @@ task 'win-installer'(dependsOn: 'win64') {
exec("jlink --output $jrePath --vm=client --compress=2 --no-header-files --no-man-pages --strip-debug --add-modules " + javaModules.join(","), installerDir)
ant.delete(dir: new File(jreDir, "legal"))
}
ant.copy(file: "resources/images/icon.ico", todir: "${installerDir}/AppFiles")
ant.copy(file: "LICENSE", tofile: "${installerDir}/AppFiles/license.txt")
ant.copy(file: "build/libs/${project.name}-win64-${version}.exe", tofile:"${installerDir}/AppFiles/ipscan.exe")
if (platform.startsWith('win')) {