Fix the condition introduced in previous commits.

This commit is contained in:
Username404-59 2021-07-08 12:57:33 +02:00
parent 710590fef6
commit 84b2d8812c
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ if [ "$#" != 0 ]; then
usageExit ;;
esac
done
if ! test "$args" = "*.ybcon*"; then usageExit; fi
if test "${args#*".ybcon"}" = "$args" ; then usageExit; fi
fi
else
usage false