diff options
| author | Jamie Macey | 2010-10-25 21:12:31 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-30 14:50:54 -0700 |
| commit | b7fa82b28df2c076ce2d4bb4dc0384aad75cee2a (patch) | |
| tree | 14b273416ad2abdbe0cd9b0f4cc87484b1dc5d29 /Library/Homebrew/utils.rb | |
| parent | 6ff5e194c74cbfc53c53b867159faed5a5afc086 (diff) | |
| download | brew-b7fa82b28df2c076ce2d4bb4dc0384aad75cee2a.tar.bz2 | |
fix warnings: ambiguous splat
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Homebrew/utils.rb')
| -rw-r--r-- | Library/Homebrew/utils.rb | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
