From 3ba4c4c5c0daf66f89385a0c67895cb96a2b1ddc Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Thu, 24 Feb 2022 15:55:08 -0800 Subject: [PATCH] CommandLineTools: added --template option to add a custom template path Works similarly to --source --- tools/CommandLineTools.hx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index eb588e73c..7bfcca93e 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -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)