diff options
| author | Mike McQuaid | 2010-12-01 23:07:26 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2010-12-01 23:08:12 +0000 |
| commit | 1efd33cac090936616e9873ae58ae540d0581517 (patch) | |
| tree | 29ebb0f76c89793bfa03829712f3aba6867258e8 | |
| parent | 780750e0b7cacc9ba552addc3d31138c539e70ec (diff) | |
| download | brew-1efd33cac090936616e9873ae58ae540d0581517.tar.bz2 | |
Add suffix for bottles to avoid cache confusion.
| -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 4534a0872..5877fbf18 100755 --- a/Library/Contributions/examples/brew-bottle.rb +++ b/Library/Contributions/examples/brew-bottle.rb @@ -10,7 +10,7 @@ ARGV.each do|formula| # Get the latest version version = `brew list --versions #{formula}`.split.last source = HOMEBREW_CELLAR + formula + version - filename = formula + '-' + version + '.tar.gz' + filename = formula + '-' + version + '-bottle.tar.gz' ohai "Bottling #{formula} #{version}..." HOMEBREW_CELLAR.cd do # Use gzip, faster to compress than bzip2, faster to uncompress than bzip2 |
