aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/list.rb
diff options
context:
space:
mode:
authorilovezfs2017-06-01 04:23:53 -0700
committerGitHub2017-06-01 04:23:53 -0700
commit8b26deef20697c3d68fc42987f2513cb1e953c77 (patch)
tree14bf38f815db5fc30c3d1e26dfb0a18d4e536540 /Library/Homebrew/cmd/list.rb
parent63b2eb9ffd1a0131194e99c65e3f0e1e1980ed9b (diff)
parent197392b56d38a4f5225886f1a10e2ccaa51faa98 (diff)
downloadbrew-8b26deef20697c3d68fc42987f2513cb1e953c77.tar.bz2
Merge pull request #2715 from Homebrew/revert-2698-operator-style
Revert "Fix operator spacing."
Diffstat (limited to 'Library/Homebrew/cmd/list.rb')
-rw-r--r--Library/Homebrew/cmd/list.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/list.rb b/Library/Homebrew/cmd/list.rb
index f5c4e68ac..790d858aa 100644
--- a/Library/Homebrew/cmd/list.rb
+++ b/Library/Homebrew/cmd/list.rb
@@ -129,7 +129,7 @@ module Homebrew
names.each do |d|
versions = d.subdirs.map { |pn| pn.basename.to_s }
next if ARGV.include?("--multiple") && versions.length < 2
- puts "#{d.basename} #{versions * " "}"
+ puts "#{d.basename} #{versions*" "}"
end
end
end