Fix the switch case instruction in scripts/ybcon.sh.

This commit is contained in:
Username404-59 2021-02-26 21:10:06 +01:00
parent 1a2550f27e
commit 36c1f17fc1
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 4 additions and 1 deletions

View File

@ -44,6 +44,9 @@ if [ "$#" != 0 ]; then
for it in "$@"
do
case "$it" in
-h | --help | --version )
usage false
exit 0 ;;
-p | --printresult )
newArgs "$it"
shift ;;
@ -52,7 +55,7 @@ if [ "$#" != 0 ]; then
run=true
break ;;
* )
usage false ;;
usage false ;;
esac
done
fi