aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python3.rb
diff options
context:
space:
mode:
authorsamueljohn2012-09-14 12:04:53 +0200
committerAdam Vandenberg2012-09-14 07:11:29 -0700
commit1caba60e937756f2f740072050c11646ff8e175c (patch)
tree301c7fb1399eb7803125620bb643ef3edaa1260a /Library/Formula/python3.rb
parent62903d01d7bd0ed42164f9464fa6f3ac08b88692 (diff)
downloadhomebrew-1caba60e937756f2f740072050c11646ff8e175c.tar.bz2
python/3: more verbose install of distribute/pip
Closes #14932. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
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