From d879b254d690590e736c5760992201e2a05872a8 Mon Sep 17 00:00:00 2001 From: hedger Date: Wed, 10 Jul 2024 19:28:22 +0300 Subject: [PATCH] ufbt: added ARGS to commandline parser (#3770) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: あく --- scripts/ufbt/commandline.scons | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/ufbt/commandline.scons b/scripts/ufbt/commandline.scons index a3ba7e08d..67a274bb5 100644 --- a/scripts/ufbt/commandline.scons +++ b/scripts/ufbt/commandline.scons @@ -93,6 +93,11 @@ vars.AddVariables( help="Enable strict import check for .faps", default=True, ), + ( + "ARGS", + "Extra arguments to pass to certain scripts supporting it", + "", + ), ) Return("vars")