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 <leah@libreboot.org>audit2
parent
0662b22297
commit
ebebb5a57e
|
@ -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" ;;
|
||||
|
|
Loading…
Reference in New Issue