From 7b27903de24707de06c769a01c248e6317c86666 Mon Sep 17 00:00:00 2001 From: Anuken Date: Sat, 24 Aug 2019 10:00:04 -0400 Subject: [PATCH] Fixed some static library issues --- desktop/build.gradle | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/desktop/build.gradle b/desktop/build.gradle index db32ac4599..7804844687 100644 --- a/desktop/build.gradle +++ b/desktop/build.gradle @@ -49,7 +49,6 @@ task dist(type: Jar, dependsOn: classes){ PackrConfig.Platform.values().each{ platform -> task "packr${platform.toString()}"{ - def platformName = platform.toString().replace('64', '').replace('32', '').replace('MacOS', 'Mac') dependsOn dist @@ -114,12 +113,12 @@ PackrConfig.Platform.values().each{ platform -> if(platform == PackrConfig.Platform.MacOS){ copy{ - into "build/packr/${appName}.app/Contents/" - from "build/packr/Contents/" + into "build/packr/output/${appName}.app/Contents/" + from "build/packr/output/Contents/" } delete{ - delete "build/packr/Contents/" + delete "build/packr/output/Contents/" } } }