diff options
| author | Jack Nagel | 2014-03-13 11:29:48 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-03-13 11:29:48 -0500 |
| commit | 088c1b550a50a9af6f668025ebe1beb054192c2e (patch) | |
| tree | 952dc0389c74ddb68c071d8a0daf9c8cc4caf636 /Library | |
| parent | fba5bf85b020300d29dcdedfdac1e3943b217941 (diff) | |
| download | brew-088c1b550a50a9af6f668025ebe1beb054192c2e.tar.bz2 | |
brew-unpack: separate args passed to system
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/cmd/brew-unpack.rb | 6 |
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 |
