diff options
| author | Peter Eisentraut | 2014-03-14 14:06:00 -0400 |
|---|---|---|
| committer | Jack Nagel | 2014-03-14 17:02:34 -0500 |
| commit | e4df9d07775c7eb1a6e5d74c8deb3d7f14050d00 (patch) | |
| tree | 682356c5935ab69a2aa62d52f3db8ce359cd7c7e /Library | |
| parent | 7959c5951fd5d2c68b82a56e7d183cadef6580f5 (diff) | |
| download | homebrew-e4df9d07775c7eb1a6e5d74c8deb3d7f14050d00.tar.bz2 | |
postgresql: Remove encoding from initdb command
This is either redundant or will create a failure when the user has a non-UTF8 locale set.
Closes #27556.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/postgresql.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/postgresql.rb b/Library/Formula/postgresql.rb index 50dc5997e..6da2dd067 100644 --- a/Library/Formula/postgresql.rb +++ b/Library/Formula/postgresql.rb @@ -76,7 +76,7 @@ class Postgresql < Formula def post_install unless File.exist? "#{var}/postgres" - system "#{bin}/initdb", "#{var}/postgres", '-E', 'utf8' + system "#{bin}/initdb", "#{var}/postgres" end end |
