incorrect usage of cd test/ if ! test -> if test !

This commit is contained in:
rocky
2003-09-20 00:28:31 +00:00
parent 728ed648f7
commit 70ffa73191
5 changed files with 11 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
#!/bin/sh
#$Id: check_opts.sh,v 1.3 2003/08/29 11:10:01 rocky Exp $
#$Id: check_opts.sh,v 1.4 2003/09/20 00:28:32 rocky Exp $
# Check cd-info options
if test -z "$srcdir" ; then
srcdir=`pwd`
@@ -7,7 +7,7 @@ fi
. ${srcdir}/check_common_fn
if ! test -x ../src/cd-info ; then
if test ! -x ../src/cd-info ; then
exit 77
fi