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 module Pourable
def stage def stage
ohai "Pouring #{cached_location.basename}" ohai "Pouring #{basename}"
super super
end end
end end
@ -85,7 +85,7 @@ class AbstractDownloadStrategy
end end
def basename def basename
nil cached_location.basename
end end
private private