aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/python.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/python.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/python.rb')
-rw-r--r--Library/Formula/python.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb
index c9358db43..bca2f62c1 100644
--- a/Library/Formula/python.rb
+++ b/Library/Formula/python.rb
@@ -150,8 +150,8 @@ class Python < Formula
EOF
# Install distribute and pip
- Distribute.new.brew { system "#{bin}/python", "setup.py", "--no-user-cfg", "install", "--force" }
- Pip.new.brew { system "#{bin}/python", "setup.py", "--no-user-cfg", "install", "--force" }
+ Distribute.new.brew { system "#{bin}/python", "setup.py", "--no-user-cfg", "install", "--force", "--verbose" }
+ Pip.new.brew { system "#{bin}/python", "setup.py", "--no-user-cfg", "install", "--force", "--verbose" }
end
def caveats