Skip to content
Snippets Groups Projects
Commit c3fe58ed authored by Tom Lane's avatar Tom Lane
Browse files

Fix bogus createdb option syntax recommended by initlocation message.

parent e43e20ce
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment