CommandLineTools: added --template option to add a custom template path

Works similarly to --source
This commit is contained in:
Josh Tynjala
2022-02-24 15:55:08 -08:00
parent 925e2b67e7
commit 3ba4c4c5c0

View File

@@ -2072,6 +2072,10 @@ class CommandLineTools
{
overrides.dependencies.push(new Dependency(argValue, ""));
}
else if (field == "template")
{
overrides.templatePaths.push(argValue);
}
else if (StringTools.startsWith(field, "certificate-"))
{
if (overrides.keystore == null)