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
commitdbfbe76ac15338c010a252739b24ea03a2f9a170 (patch)
treeae2758a6d6bc3558fd1dbee3442582f93bfe5bfa /Library/Homebrew/cmd/install.rb
parentdc7b54ae4377173f2528229ea2bbb361f5a86cfe (diff)
downloadbrew-dbfbe76ac15338c010a252739b24ea03a2f9a170.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