From: StaticRocket <[email protected]> Guard against and invalid expression in the main option case statement.
Signed-off-by: StaticRocket <[email protected]> --- oe-layertool-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oe-layertool-setup.sh b/oe-layertool-setup.sh index 8e29f9a..e427393 100755 --- a/oe-layertool-setup.sh +++ b/oe-layertool-setup.sh @@ -962,7 +962,7 @@ do o ) outputfile="$OPTARG";; d ) dldir="$OPTARG";; b ) oebase="$OPTARG";; - h ) usage;; + * ) usage;; esac done -- 2.40.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#14528): https://lists.yoctoproject.org/g/meta-arago/message/14528 Mute This Topic: https://lists.yoctoproject.org/mt/99392791/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
