From: Martin Pool Date: Wed, 29 Aug 2001 09:23:19 +0000 (+0000) Subject: Apparently '!' to invert a pipeline result doesn't work on UnixWare. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5cb1f5c7950771429df39ee829b4744749132930 Apparently '!' to invert a pipeline result doesn't work on UnixWare. --- diff --git a/runtests.sh b/runtests.sh index 55c6149c..1d284372 100755 --- a/runtests.sh +++ b/runtests.sh @@ -110,13 +110,13 @@ echo "$0 running in `pwd`" echo " rsync_bin=$rsync_bin" echo " srcdir=$srcdir" -if ! test -f $rsync_bin +if test ! -f $rsync_bin then echo "rsync_bin $rsync_bin is not a file" >&2 exit 2 fi -if ! test -d $srcdir +if test ! -d $srcdir then echo "srcdir $srcdir is not a directory" >&2 exit 2