aboutsummaryrefslogtreecommitdiff
path: root/INSTALL-DEV
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-02-01 18:34:04 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-02-01 18:36:11 +0200
commit54822bd6f6ec0ab46b1b04e7f4610ee7af1ccea0 (patch)
tree93da0d1d8e9c7f349074c43a8f71b7c1379ecf2e /INSTALL-DEV
parent4e1d5e3313cff60d503b0cde68730bb7e95e0621 (diff)
Remove stray line escape from psql command line (it waits until ';')
Diffstat (limited to 'INSTALL-DEV')
-rw-r--r--INSTALL-DEV2
1 files changed, 1 insertions, 1 deletions
diff --git a/INSTALL-DEV b/INSTALL-DEV
index 6e23664..51dad72 100644
--- a/INSTALL-DEV
+++ b/INSTALL-DEV
@@ -28,7 +28,7 @@ group, not user. However, most installations use the same name for both.]
$ sudo sudo -u postgres psql # Note: double sudo is not a mistake.
-CREATE DATABASE brep TEMPLATE template0 ENCODING 'UTF8' \
+CREATE DATABASE brep TEMPLATE template0 ENCODING 'UTF8'
LC_COLLATE 'en_US.UTF8' LC_CTYPE 'en_US.UTF8';
CREATE USER <user>;
GRANT ALL PRIVILEGES ON DATABASE brep TO <user>;