From 0e97e98fe16baa2ac1c8b17bd054fd697e22f956 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Thu, 27 Jun 2024 02:31:54 +0100 Subject: trees: explicitly set mode for -b doing nothing means that if a flag is passed, and then another flag overriding it, the resulting action will not be correct; only one flag should be provided anyway, but some users may feel a bit more adventurous. mitigate it. Signed-off-by: Leah Rowe --- script/trees | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/trees b/script/trees index 7f6f2f25..c3391f58 100755 --- a/script/trees +++ b/script/trees @@ -19,7 +19,7 @@ main() while getopts f:b:m:u:c:x:s:l:n: option; do _f="$1" case "$1" in - -b) : ;; + -b) mode="" ;; -u) mode="oldconfig" ;; -m) mode="menuconfig" ;; -c) mode="distclean" ;; -- cgit v1.2.1