mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-11 19:20:40 +08:00
Fix syntax error reported by old shells ("if ! command..." is a
neologism, apparently).
This commit is contained in:
parent
1aecb8d2ff
commit
c446802b22
@ -26,7 +26,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
# IDENTIFICATION
|
# 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
|
# The data path must be absolute, because the backend doesn't like
|
||||||
# '.' and '..' stuff. (Should perhaps be fixed there.)
|
# '.' 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
|
then
|
||||||
echo "$CMDNAME: data path must be specified as an absolute path"
|
echo "$CMDNAME: data path must be specified as an absolute path"
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
Reference in New Issue
Block a user