diff --git a/Library/Homebrew/download_strategy.rb b/Library/Homebrew/download_strategy.rb index 8091c028f8..8ae34bec42 100644 --- a/Library/Homebrew/download_strategy.rb +++ b/Library/Homebrew/download_strategy.rb @@ -11,7 +11,7 @@ class AbstractDownloadStrategy module Pourable def stage - ohai "Pouring #{cached_location.basename}" + ohai "Pouring #{basename}" super end end @@ -85,7 +85,7 @@ class AbstractDownloadStrategy end def basename - nil + cached_location.basename end private