OSDN Git Service

Fix syntax error reported by old shells ("if ! command..." is a
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 25 Mar 2000 18:46:17 +0000 (18:46 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 25 Mar 2000 18:46:17 +0000 (18:46 +0000)
neologism, apparently).

src/bin/initdb/initdb.sh

index 57db780..e0db622 100644 (file)
@@ -26,7 +26,7 @@
 #
 #
 # IDENTIFICATION
-#    $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.87 2000/03/25 14:32:50 momjian Exp $
+#    $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.88 2000/03/25 18:46:17 tgl Exp $
 #
 #-------------------------------------------------------------------------
 
@@ -282,7 +282,8 @@ fi
 # The data path must be absolute, because the backend doesn't like
 # '.' and '..' stuff. (Should perhaps be fixed there.)
 
-if ! echo "$PGDATA" | grep '^/' > /dev/null 2>&1
+echo "$PGDATA" | grep '^/' > /dev/null 2>&1
+if [ "$?" -ne 0 ]
 then
     echo "$CMDNAME: data path must be specified as an absolute path"
     exit 1