aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2002-02-24 23:59:36 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2002-02-24 23:59:36 +0000
commitc3fe58ed63d02ca8d31dfa50b8786495883415d7 (patch)
treeec816dd9574f885c7206f4c7686cd8e472ef3161 /src
parente43e20cef19f44fc3a44d2c1e24b4992cecaa0b4 (diff)
downloadpostgresql-c3fe58ed63d02ca8d31dfa50b8786495883415d7.tar.gz
postgresql-c3fe58ed63d02ca8d31dfa50b8786495883415d7.zip
Fix bogus createdb option syntax recommended by initlocation message.
Diffstat (limited to 'src')
-rw-r--r--src/bin/initlocation/initlocation.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/initlocation/initlocation.sh b/src/bin/initlocation/initlocation.sh
index 4cf965776c8..481923d3b89 100644
--- a/src/bin/initlocation/initlocation.sh
+++ b/src/bin/initlocation/initlocation.sh
@@ -9,7 +9,7 @@
#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation.sh,v 1.12 2001/09/30 22:17:50 momjian Exp $
+# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/initlocation.sh,v 1.13 2002/02/24 23:59:36 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -161,7 +161,7 @@ if [ "$haveenv" = "t" ]; then
echo "You can now create a database using"
echo " CREATE DATABASE <name> WITH LOCATION = '$Location'"
echo "in SQL, or"
- echo " createdb <name> -D '$Location'"
+ echo " createdb -D '$Location' <name>"
echo "from the shell."
fi
echo