aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python3.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/python3.rb')
-rw-r--r--Library/Formula/python3.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index 37f31b787..61ab7e093 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -129,14 +129,14 @@ class Python3 < Formula
# Install distribute for python3
Distribute.new.brew do
- system "#{bin}/python3.2", "setup.py", "install", "--force"
+ system "#{bin}/python3.2", "setup.py", "install", "--force", "--verbose"
# Symlink to easy_install3 to match python3 command.
unless (scripts_folder/'easy_install3').exist?
ln_s scripts_folder/"easy_install", scripts_folder/"easy_install3"
end
end
# Install pip-3.2 for python3
- Pip.new.brew { system "#{bin}/python3.2", "setup.py", "install", "--force" }
+ Pip.new.brew { system "#{bin}/python3.2", "setup.py", "install", "--force", "--verbose" }
end
def caveats