Skip to content

Commit 5df3d4b

Browse files
authored
Make gradle excludedModules property work (#955)
1 parent eb0df6c commit 5df3d4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ include BuildUtils.getMinificationProjectPath(gradle)
106106
List<String> excludedModules = []
107107
if (hasProperty('excludedModules'))
108108
{
109-
excludedModules.addAll("${excludedModules}".split(","))
109+
excludedModules.addAll("${getProperty('excludedModules')}".split(","))
110110
}
111111

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

0 commit comments

Comments
 (0)