aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMax Howell2012-03-16 00:35:56 +0000
committerMax Howell2012-03-16 00:35:56 +0000
commitf1c26eb6e7c9d9b860172ea1606bc87467db5bd4 (patch)
tree71f57b5b0f639f93077a7272cd9cd053d581cf98 /Library
parentc28943de7b99b2298d60b0cbbbc0d5fa72a9777d (diff)
downloadbrew-f1c26eb6e7c9d9b860172ea1606bc87467db5bd4.tar.bz2
Let's print the full path
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 98f27aeea..7aa31ad1f 100644
--- a/Library/Homebrew/download_strategy.rb
+++ b/Library/Homebrew/download_strategy.rb
@@ -64,7 +64,7 @@ class CurlDownloadStrategy < AbstractDownloadStrategy
end
end
else
- puts "File already downloaded in #{File.dirname(@tarball_path)}"
+ puts "Already downloaded: #{@tarball_path}"
end
return @tarball_path # thus performs checksum verification
end