aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils.rb
diff options
context:
space:
mode:
authorilovezfs2017-06-01 04:06:40 -0700
committerGitHub2017-06-01 04:06:40 -0700
commit197392b56d38a4f5225886f1a10e2ccaa51faa98 (patch)
tree14bf38f815db5fc30c3d1e26dfb0a18d4e536540 /Library/Homebrew/utils.rb
parent63b2eb9ffd1a0131194e99c65e3f0e1e1980ed9b (diff)
downloadbrew-197392b56d38a4f5225886f1a10e2ccaa51faa98.tar.bz2
Revert "Fix operator spacing."
Diffstat (limited to 'Library/Homebrew/utils.rb')
-rw-r--r--Library/Homebrew/utils.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index 0c7c80281..f837de202 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -175,7 +175,7 @@ module Homebrew
end
def system(cmd, *args)
- puts "#{cmd} #{args * " "}" if ARGV.verbose?
+ puts "#{cmd} #{args*" "}" if ARGV.verbose?
_system(cmd, *args)
end
@@ -334,7 +334,7 @@ def which_editor
# Find Textmate
editor = which("mate", ENV["HOMEBREW_PATH"])
- # Find BBEdit/TextWrangler
+ # Find BBEdit / TextWrangler
editor ||= which("edit", ENV["HOMEBREW_PATH"])
# Find vim
editor ||= which("vim", ENV["HOMEBREW_PATH"])