Fix the condition introduced in previous commits.
This commit is contained in:
parent
710590fef6
commit
84b2d8812c
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue