aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAlexis Hildebrandt2009-12-27 14:33:12 +0100
committerMax Howell2009-12-31 01:55:10 +0000
commit17d0f59526a4ec75396b62efa29705ab9a6f91f7 (patch)
tree3ed566a6a15277511bc1013965eae59605954ada /Library
parentf4a68efd9fa8ed5f97b524e56af2fc1b344e8f77 (diff)
downloadhomebrew-17d0f59526a4ec75396b62efa29705ab9a6f91f7.tar.bz2
Add support for compress compressed tarballs (.tar.Z)
Fixes #295
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/download_strategy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 134fbe2fd..68cb0bf16 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -86,7 +86,7 @@ class CurlDownloadStrategy <AbstractDownloadStrategy
when /^PK\003\004/ # .zip archive
quiet_safe_system '/usr/bin/unzip', {:quiet_flag => '-qq'}, @dl
chdir
- when /^\037\213/, /^BZh/ # gzip/bz2 compressed
+ when /^\037\213/, /^BZh/, /^\037\235/ # gzip/bz2/compress compressed
# TODO check if it's really a tar archive
safe_system '/usr/bin/tar', 'xf', @dl
chdir