diff --git a/build.gradle b/build.gradle index f7c34edf24..ba2cdc4b5a 100644 --- a/build.gradle +++ b/build.gradle @@ -320,7 +320,7 @@ task createMacAppDist(type: Copy, dependsOn: createDist) { } task createMacAppDistZip(type: Zip, dependsOn: createMacAppDist) { - archiveFile = "IGV_MacApp_${version}.zip" + archiveName = "IGV_MacApp_${version}.zip" from("${buildDir}/IGV-MacApp-dist") doLast { @@ -329,7 +329,7 @@ task createMacAppDistZip(type: Zip, dependsOn: createMacAppDist) { } task createMacAppWithJavaDistZip(type: Zip, dependsOn: createMacAppDist) { - archiveFile = "IGV_MacApp_${version}_WithJava.zip" + archiveName = "IGV_MacApp_${version}_WithJava.zip" with copySpec { from jdkBundleMac into "IGV_${version}.app/Contents/jdk-17" } from("${buildDir}/IGV-MacApp-dist")