Skip to content

Commit

Permalink
Build DMG image for SDK #82 (#84)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreysubbotin committed Mar 2, 2022
1 parent ba8f2ce commit 4d487a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ if (project.hasProperty('targetOsPlatform')) {
ext.targetOsPlatform = project['targetOsPlatform']
}

ext.bundlePlatform = '-' + ext.targetOsPlatform;
ext.bundlePlatform = ext.targetOsPlatform ? "-" + ext.targetOsPlatform : ""

ext.bundleOutput = file("${rootProject.buildDir}/bundle" + rootProject["bundlePlatform"])
ext.nativeBundle = file("${ext.bundleOutput}/native" + rootProject["bundlePlatform"])
ext.bundleOutput = file("${rootProject.buildDir}/bundle" + ext.bundlePlatform)
ext.nativeBundle = file("${ext.bundleOutput}/native" + ext.bundlePlatform)
def buildVersion = rootProject.hasProperty('buildVersion') ? rootProject['buildVersion'] : '1.0-SNAPSHOT'

allprojects {
Expand Down

0 comments on commit 4d487a8

Please sign in to comment.