diff options
| author | Mike McQuaid | 2010-12-01 23:04:33 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-01 23:04:33 +0000 |
| commit | 55aa2a296be215716466016bfff3fc8116881328 (patch) | |
| tree | 3f07f7bcdf1cf456a4632dfcc48a05f01a8b2986 /Library | |
| parent | bc724bd31ee477a8fd30740ce8debb45efb961a6 (diff) | |
| download | brew-55aa2a296be215716466016bfff3fc8116881328.tar.bz2 | |
Fix spaced paths with brew bottle.
We shouldn't ever really have these but better to be safe than sorry.
Diffstat (limited to 'Library')
| -rwxr-xr-x | Library/Contributions/examples/brew-bottle.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Contributions/examples/brew-bottle.rb b/Library/Contributions/examples/brew-bottle.rb index 4e3205194..881a35e58 100755 --- a/Library/Contributions/examples/brew-bottle.rb +++ b/Library/Contributions/examples/brew-bottle.rb @@ -15,7 +15,7 @@ ARGV.each do|formula| HOMEBREW_CELLAR.cd do # Use gzip, much faster than bzip2 and hardly any file size difference # when compressing binaries. - safe_system "tar czf #{destination}/#{filename} #{formula}/#{version}" + safe_system 'tar', 'czf', "#{destination}/#{filename}", "#{formula}/#{version}" end ohai "Bottled #{filename}" end
\ No newline at end of file |
