1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Trim the whitespace around the plugins names.

This commit is contained in:
fhuya
2020-03-06 17:22:04 -08:00
parent d4b31c6980
commit 7dea2ad1de
2 changed files with 6 additions and 3 deletions

View File

@@ -42,7 +42,7 @@ ext.getGodotPluginsBinaries = { ->
String pluginsList = project.property("custom_template_plugins")
if (pluginsList != null && !pluginsList.trim().isEmpty()) {
for (String plugin : pluginsList.split(",")) {
binDeps += plugin + "*.aar"
binDeps += plugin.trim() + "*.aar"
}
}
}