Browse Source

Fix `packagePkg` task (#1798)

pull/1844/head
Thomas Vos 3 years ago committed by Alexey Tsvetkov
parent
commit
80affc78a3
  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