Skip to content

Commit

Permalink
exclude other platform zip files when archiving
Browse files Browse the repository at this point in the history
  • Loading branch information
angryziber committed Feb 11, 2023
1 parent dfc7fb8 commit 9d3d11f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def macLauncher(def platform) {
ant.delete(file: "${dist}/${name}.app/Contents/MacOS/jre/bin/keytool")

def zipName = "${dist}/${project.name}-${platform}-${version}.zip"
exec("zip -R $zipName *", dist)
exec("zip -R $zipName * -x*.zip", dist)

if (System.getenv("APPLE_USER")) {
// TODO: codesign --sign Example --options runtime --entitlements test/test.entitlements --force build/Release/test.app
Expand Down

0 comments on commit 9d3d11f

Please sign in to comment.