Skip to content

Commit

Permalink
Make gradle excludedModules property work (#955)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-tchad authored Dec 19, 2024
1 parent eb0df6c commit 5df3d4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ include BuildUtils.getMinificationProjectPath(gradle)
List<String> excludedModules = []
if (hasProperty('excludedModules'))
{
excludedModules.addAll("${excludedModules}".split(","))
excludedModules.addAll("${getProperty('excludedModules')}".split(","))
}

if (new File(getRootDir(), BuildUtils.convertPathToRelativeDir(BuildUtils.getPlatformProjectPath(gradle))).exists()
Expand Down

0 comments on commit 5df3d4b

Please sign in to comment.