From b7fa82b28df2c076ce2d4bb4dc0384aad75cee2a Mon Sep 17 00:00:00 2001 From: Jamie Macey Date: Mon, 25 Oct 2010 21:12:31 -0700 Subject: [PATCH] fix warnings: ambiguous splat Signed-off-by: Adam Vandenberg --- Library/Homebrew/download_strategy.rb | 4 ++-- Library/Homebrew/formula.rb | 7 ++++--- Library/Homebrew/utils.rb | 2 +- bin/brew | 4 ++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index de1ace7929..1350e8e22a 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -24,7 +24,7 @@ class AbstractDownloadStrategy end def quiet_safe_system *args - safe_system *expand_safe_system_args(args) + safe_system(*expand_safe_system_args(args)) end end @@ -209,7 +209,7 @@ class SubversionDownloadStrategy