diff options
| author | Jack Nagel | 2014-12-26 15:39:34 -0500 | 
|---|---|---|
| committer | Jack Nagel | 2014-12-26 15:39:34 -0500 | 
| commit | 054ddc1db659f060de2f8560a1fe351b97fcb9f5 (patch) | |
| tree | c66eb454ccf8f102fa429c95410e02e1c914dc72 /Library/Homebrew/cmd/install.rb | |
| parent | 3c1c507c6fe65e02608c9dcce539e948b0671c8b (diff) | |
| download | homebrew-054ddc1db659f060de2f8560a1fe351b97fcb9f5.tar.bz2 | |
Fix warning
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index c2789a40e..768759148 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -35,7 +35,7 @@ module Homebrew          ARGV.casks.each do |c|            cmd = "brew", "cask", "install", c            ohai cmd.join " " -          system *cmd +          system(*cmd)          end        end | 
