From 980001341dfa1bf43aa988be67f8adb514d92ea1 Mon Sep 17 00:00:00 2001 From: Martin Afanasjew Date: Wed, 20 Apr 2016 01:38:00 +0200 Subject: [PATCH] brew.rb: fix Ruby syntax warning Library/brew.rb:108: warning: `*' interpreted as argument prefix --- Library/brew.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/brew.rb b/Library/brew.rb index 38e11473c4..839ab6e363 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}"