Skip to content

Commit

Permalink
Ignore side from config if null
Browse files Browse the repository at this point in the history
  • Loading branch information
SettingDust authored and juraj-hrivnak committed Oct 10, 2024
1 parent 64ed775 commit e3d1361
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ data class Project(
if (input in this || this.files.any { input in it.fileName })
{
config.type?.let { this.type = it }
this.side = config.side
config.side?.let { this.side = it }
config.updateStrategy?.let { this.updateStrategy = it }
config.redistributable?.let { this.redistributable = it }
config.subpath?.let { this.subpath = it }
Expand Down

0 comments on commit e3d1361

Please sign in to comment.