diff options
| author | Justin Pitts | 2013-09-20 07:20:38 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-09-20 07:42:30 -0700 |
| commit | bf4f591b8ab05e0acbfab9915c03160254a28ea0 (patch) | |
| tree | 79e72fe4434e7390b8f39f903367b3d1a6a73c25 /Library/Formula/postgresql.rb | |
| parent | 6b2612d704d72a25c4573ea64d018a1bccc2255e (diff) | |
| download | homebrew-bf4f591b8ab05e0acbfab9915c03160254a28ea0.tar.bz2 | |
postgresql: fix caveat indentation
The extra-indented section was causing the
first 4 characters of the following section
to be truncated.
Closes #22706.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/postgresql.rb')
| -rw-r--r-- | Library/Formula/postgresql.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb index 1d44b9275..fce43426b 100644 --- a/Library/Formula/postgresql.rb +++ b/Library/Formula/postgresql.rb @@ -70,9 +70,9 @@ class Postgresql < Formula def caveats s = <<-EOS.undent - initdb #{var}/postgres -E utf8 # create a database - postgres -D #{var}/postgres # serve that database - PGDATA=#{var}/postgres postgres # …alternatively + initdb #{var}/postgres -E utf8 # create a database + postgres -D #{var}/postgres # serve that database + PGDATA=#{var}/postgres postgres # …alternatively If builds of PostgreSQL 9 are failing and you have version 8.x installed, you may need to remove the previous version first. See: |
