aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorPeter Eisentraut2014-03-14 14:06:00 -0400
committerJack Nagel2014-03-14 17:02:34 -0500
commite4df9d07775c7eb1a6e5d74c8deb3d7f14050d00 (patch)
tree682356c5935ab69a2aa62d52f3db8ce359cd7c7e /Library
parent7959c5951fd5d2c68b82a56e7d183cadef6580f5 (diff)
downloadhomebrew-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.rb2
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