aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2014-03-13 11:29:48 -0500
committerJack Nagel2014-03-13 11:29:48 -0500
commit088c1b550a50a9af6f668025ebe1beb054192c2e (patch)
tree952dc0389c74ddb68c071d8a0daf9c8cc4caf636 /Library
parentfba5bf85b020300d29dcdedfdac1e3943b217941 (diff)
downloadbrew-088c1b550a50a9af6f668025ebe1beb054192c2e.tar.bz2
brew-unpack: separate args passed to system
Diffstat (limited to 'Library')
-rwxr-xr-xLibrary/Contributions/cmd/brew-unpack.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/cmd/brew-unpack.rb b/Library/Contributions/cmd/brew-unpack.rb
index 3a1db2dcf..24cfbd419 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