From 088c1b550a50a9af6f668025ebe1beb054192c2e Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 13 Mar 2014 11:29:48 -0500 Subject: [PATCH] brew-unpack: separate args passed to system --- Library/Contributions/cmd/brew-unpack.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Library/Contributions/cmd/brew-unpack.rb b/Library/Contributions/cmd/brew-unpack.rb index 3a1db2dcf5..24cfbd419d 100755 --- a/Library/Contributions/cmd/brew-unpack.rb +++ b/Library/Contributions/cmd/brew-unpack.rb @@ -91,9 +91,9 @@ module Homebrew extend self if ARGV.switch? 'g' ohai "Setting up git repository" cd stage_dir - system "git init -q" - system "git add -A" - system 'git commit -qm"Vanilla"' + system "git", "init", "-q" + system "git", "add", "-A" + system "git", "commit", "-q", "-m", "brew-unpack" end end end