Fix the condition introduced in previous commits.
This commit is contained in:
parent
710590fef6
commit
84b2d8812c
|
@ -67,7 +67,7 @@ if [ "$#" != 0 ]; then
|
||||||
usageExit ;;
|
usageExit ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
if ! test "$args" = "*.ybcon*"; then usageExit; fi
|
if test "${args#*".ybcon"}" = "$args" ; then usageExit; fi
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
usage false
|
usage false
|
||||||
|
|
Loading…
Reference in New Issue