aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorJack Nagel2013-08-13 17:08:57 -0500
committerJack Nagel2013-08-13 17:09:25 -0500
commitb730a85e3a327040ae4a8d8f6dcee9335573c100 (patch)
treeab08a05f5d1dfc4b66ed018f6b7829776cfcdaf4 /Library/Homebrew
parentd08508f7c79a711d83eba64ae43dc88e051eed56 (diff)
downloadbrew-b730a85e3a327040ae4a8d8f6dcee9335573c100.tar.bz2
Remove outdated comment
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/download_strategy.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb
index 9fc10ce17..62f230309 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -135,13 +135,6 @@ class CurlDownloadStrategy < AbstractDownloadStrategy
raise "You must install 7zip: brew install p7zip" unless which "7zr"
safe_system '7zr', 'x', @tarball_path
else
- # we are assuming it is not an archive, use original filename
- # this behaviour is due to ScriptFileFormula expectations
- # So I guess we should cp, but we mv, for this historic reason
- # HOWEVER if this breaks some expectation you had we *will* change the
- # behaviour, just open an issue at github
- # We also do this for jar files, as they are in fact zip files, but
- # we don't want to unzip them
FileUtils.cp @tarball_path, basename_without_params
end
end