ManifestResources: append "/" to rootPath if missing

This commit is contained in:
Kostas Chatzikokolakis
2021-01-27 13:35:56 +02:00
parent d2fcc5547d
commit 7ac8d0c27e

View File

@@ -33,6 +33,12 @@ import sys.FileSystem;
rootPath = Reflect.field (config, "rootPath");
if(!StringTools.endsWith(rootPath, "/")) {
rootPath += "/";
}
}
if (rootPath == null) {