Browse Source

Fix `packagePkg` task (#1798)

pull/1808/head
Thomas Vos 3 years ago committed by GitHub
parent
commit
f895874f51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/internal/configureApplication.kt

6
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/desktop/application/internal/configureApplication.kt

@ -136,7 +136,11 @@ internal fun Project.configurePackagingTasks(apps: Collection<Application>) {
checkRuntime = checkRuntime
)
} else {
configurePackagingTask(app, createAppImage = createDistributable)
configurePackagingTask(
app,
createAppImage = createDistributable,
checkRuntime = checkRuntime
)
}
}

Loading…
Cancel
Save