aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorJack Nagel2014-12-26 15:39:34 -0500
committerJack Nagel2014-12-26 15:39:34 -0500
commit054ddc1db659f060de2f8560a1fe351b97fcb9f5 (patch)
treec66eb454ccf8f102fa429c95410e02e1c914dc72 /Library/Homebrew/cmd/install.rb
parent3c1c507c6fe65e02608c9dcce539e948b0671c8b (diff)
downloadhomebrew-054ddc1db659f060de2f8560a1fe351b97fcb9f5.tar.bz2
Fix warning
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb2
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