Skip to content

Commit

Permalink
Fix fromFiles argument not lazy (#1797)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Vos authored Feb 8, 2022
1 parent f895874 commit e818953
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ internal fun AbstractJPackageTask.configurePackagingTask(
javaHome.set(provider { app.javaHomeOrDefault() })

launcherMainJar.set(app.mainJar.orNull)
app._fromFiles.forEach { files.from(it) }
files.from(app._fromFiles)
dependsOn(*app._dependenciesTaskNames.toTypedArray())

app._configurationSource?.let { configSource ->
Expand Down

0 comments on commit e818953

Please sign in to comment.