diff options
author | Martin Pool <mbp@samba.org> | 2001-08-29 09:23:19 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2001-08-29 09:23:19 +0000 |
commit | 5cb1f5c7950771429df39ee829b4744749132930 (patch) | |
tree | 03cccbd4267d2f2d23ec8ac8a2a523f55ee73c11 /runtests.sh | |
parent | 12b9c8409e2bfcd8f5eada3fad3d40cdbd673509 (diff) | |
download | rsync-5cb1f5c7950771429df39ee829b4744749132930.tar.gz rsync-5cb1f5c7950771429df39ee829b4744749132930.tar.bz2 rsync-5cb1f5c7950771429df39ee829b4744749132930.zip |
Apparently '!' to invert a pipeline result doesn't work on UnixWare.
Diffstat (limited to 'runtests.sh')
-rwxr-xr-x | runtests.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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 |