From: Richard Hartmann Date: Sat, 25 Oct 2014 21:22:54 +0000 (+0200) Subject: vcsh: FIX fatal() X-Git-Url: https://git.madduck.net/code/vcsh.git/commitdiff_plain/bad560c81296408c539da798f4f589f5fae4f723?ds=inline vcsh: FIX fatal() --- diff --git a/vcsh b/vcsh index af67e18..faba42c 100755 --- a/vcsh +++ b/vcsh @@ -24,7 +24,7 @@ SELF=$(basename $0) fatal() { echo "$SELF: fatal: $1" >&2 - [ -z $2] && exit 1 + [ -z $2 ] && exit 1 exit $2 }