diff options
| author | Markus Reiter | 2017-06-01 08:52:49 +0200 |
|---|---|---|
| committer | GitHub | 2017-06-01 08:52:49 +0200 |
| commit | 63b2eb9ffd1a0131194e99c65e3f0e1e1980ed9b (patch) | |
| tree | 918fe00d317e9a87e1b22bd98f194341056d3aa5 /Library/Homebrew/utils.rb | |
| parent | f9e8d8430154e3480d5255e35b802a46f9168b5a (diff) | |
| parent | d34ba7395bbbc49f933cb244323cd20e180b0609 (diff) | |
| download | brew-63b2eb9ffd1a0131194e99c65e3f0e1e1980ed9b.tar.bz2 | |
Merge pull request #2698 from reitermarkus/operator-style
Fix operator spacing.
Diffstat (limited to 'Library/Homebrew/utils.rb')
| -rw-r--r-- | Library/Homebrew/utils.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index f837de202..0c7c80281 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"]) |
