Use real basename for output.

This commit is contained in:
Markus Reiter 2018-08-25 21:42:34 +02:00
parent 516a39f5a4
commit 3988458919

View File

@ -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