1
0

Handle error in command parser

This commit is contained in:
MatMoul 2025-08-25 03:26:03 +02:00
parent 87653b7e27
commit c81b8d0847

View File

@ -162,5 +162,8 @@ case ${1} in
exit 1
fi
;;
*) exit 1;;
*)
showHelp
exit 1
;;
esac