]> granicus.if.org Git - postgresql/commitdiff
Fix bogus createdb option syntax recommended by initlocation message.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Feb 2002 23:59:36 +0000 (23:59 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 24 Feb 2002 23:59:36 +0000 (23:59 +0000)
src/bin/initlocation/initlocation.sh

index 4cf965776c8cbd94bb44249b7a21da740217e6e2..481923d3b89b3d484efc55ca9a539962012c1a18 100644 (file)
@@ -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