diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-12-31 22:24:14 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-12-31 22:24:14 +0000 |
commit | 8972088dcbcd20cfba569ef4d81e336b1de26fe4 (patch) | |
tree | 3b607458f4067938ad58b874b5ff2d5c475d173a | |
parent | 52522850fefbcfed25faa5c724b41635b51cac50 (diff) | |
download | postgresql-8972088dcbcd20cfba569ef4d81e336b1de26fe4.tar.gz postgresql-8972088dcbcd20cfba569ef4d81e336b1de26fe4.zip |
Fix typo in error message.
-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 b83b1810250..d53fec77b2e 100644 --- a/src/bin/initdb/initdb.sh +++ b/src/bin/initdb/initdb.sh @@ -24,7 +24,7 @@ # # Copyright (c) 1994, Regents of the University of California # -# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.117 2000/11/25 19:05:43 petere Exp $ +# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.118 2000/12/31 22:24:14 tgl Exp $ # #------------------------------------------------------------------------- @@ -403,7 +403,7 @@ then if [ "$template_only" != yes ] then ( - echo "$CMDNAME: The directory $PGDATA is exists but is not empty." + echo "$CMDNAME: The directory $PGDATA exists but is not empty." echo "If you want to create a new database system, either remove or empty" echo "the directory $PGDATA or run initdb with an argument" echo "other than $PGDATA." |