aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMartin Afanasjew2016-04-20 01:38:00 +0200
committerMartin Afanasjew2016-04-20 01:38:00 +0200
commit980001341dfa1bf43aa988be67f8adb514d92ea1 (patch)
tree9ae68ec14fd7148833bf78907d6cf53750298408 /Library
parent0949a6955ab2a872fc1d0514cef0b59847c5cb48 (diff)
downloadbrew-980001341dfa1bf43aa988be67f8adb514d92ea1.tar.bz2
brew.rb: fix Ruby syntax warning
Library/brew.rb:108: warning: `*' interpreted as argument prefix
Diffstat (limited to 'Library')
-rw-r--r--Library/brew.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/brew.rb b/Library/brew.rb
index 38e11473c..839ab6e36 100644
--- a/Library/brew.rb
+++ b/Library/brew.rb
@@ -104,7 +104,7 @@ begin
tap_commands += %W[/usr/bin/sudo -u ##{brew_uid}]
end
tap_commands += %W[#{HOMEBREW_BREW_FILE} tap #{possible_tap}]
- safe_system *tap_commands
+ safe_system(*tap_commands)
exec HOMEBREW_BREW_FILE, cmd, *ARGV
else
onoe "Unknown command: #{cmd}"