brew.rb: fix Ruby syntax warning

Library/brew.rb:108: warning: `*' interpreted as argument prefix
This commit is contained in:
Martin Afanasjew 2016-04-20 01:38:00 +02:00
parent 0949a6955a
commit 980001341d

View File

@ -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}"