From b7fa82b28df2c076ce2d4bb4dc0384aad75cee2a Mon Sep 17 00:00:00 2001 From: Jamie Macey Date: Mon, 25 Oct 2010 21:12:31 -0700 Subject: fix warnings: ambiguous splat Signed-off-by: Adam Vandenberg --- Library/Homebrew/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Homebrew/utils.rb') diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 24846d6b1..e2eb9cb3e 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -161,7 +161,7 @@ def exec_editor *args # we split the editor because especially on mac "mate -w" is common # but we still want to use the comma-delimited version of exec because then # we don't have to escape args, and escaping 100% is tricky - exec *(editor.split+args) + exec(*(editor.split+args)) end # GZips the given path, and returns the gzipped file -- cgit v1.2.3