diff options
| author | samueljohn | 2012-09-14 12:04:53 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-14 07:11:29 -0700 |
| commit | 1caba60e937756f2f740072050c11646ff8e175c (patch) | |
| tree | 301c7fb1399eb7803125620bb643ef3edaa1260a /Library/Formula/python3.rb | |
| parent | 62903d01d7bd0ed42164f9464fa6f3ac08b88692 (diff) | |
| download | homebrew-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.rb | 4 |
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 |
