aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 78e2dcf93..4dad76fdc 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -592,6 +592,11 @@ class Formula
pretty_args.delete "--disable-dependency-tracking"
pretty_args.delete "--disable-debug"
end
+ pretty_args.each_index do |i|
+ if pretty_args[i].to_s.start_with? "import setuptools"
+ pretty_args[i] = "import setuptools..."
+ end
+ end
ohai "#{cmd} #{pretty_args*' '}".strip
@exec_count ||= 0