brew-unpack: separate args passed to system

This commit is contained in:
Jack Nagel 2014-03-13 11:29:48 -05:00
parent fba5bf85b0
commit 088c1b550a

View File

@ -91,9 +91,9 @@ module Homebrew extend self
if ARGV.switch? 'g' if ARGV.switch? 'g'
ohai "Setting up git repository" ohai "Setting up git repository"
cd stage_dir cd stage_dir
system "git init -q" system "git", "init", "-q"
system "git add -A" system "git", "add", "-A"
system 'git commit -qm"Vanilla"' system "git", "commit", "-q", "-m", "brew-unpack"
end end
end end
end end