diff options
| author | Bruce Momjian | 2001-09-30 22:17:51 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2001-09-30 22:17:51 +0000 |
| commit | c6f94644a0ea716375c1e90cbaa2424588a1a6c7 (patch) | |
| tree | 98e6a7f9491e7373ec712e8861233b65b4ebeecb /src/bin/initdb | |
| parent | 7eff804b490afbc7815cbaf6d2b4bcec311d12bb (diff) | |
These are further fixes for double quotes missing in the various shell
scripts.
Justin Clift
Diffstat (limited to 'src/bin/initdb')
| -rw-r--r-- | src/bin/initdb/initdb.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/initdb/initdb.sh b/src/bin/initdb/initdb.sh index ae16fe1c0ec..8f4eb657878 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -27,7 +27,7 @@ # Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.137 2001/09/08 15:24:00 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.138 2001/09/30 22:17:50 momjian Exp $ # #------------------------------------------------------------------------- @@ -539,7 +539,7 @@ EOF if [ "$?" -ne 0 ]; then exit_nicely fi - if [ ! -f $PGDATA/global/pg_pwd ]; then + if [ ! -f "$PGDATA"/global/pg_pwd ]; then echo echo "The password file wasn't generated. Please report this problem." 1>&2 exit_nicely |
