Fix gzip extension
This commit is contained in:
parent
9f7f3370aa
commit
6dad42bc77
|
@ -28,11 +28,13 @@ module Middleman::Extensions
|
|||
|
||||
output_filename, old_size, new_size = Middleman::Extensions::Gzip.gzip_file(path.to_s)
|
||||
|
||||
if output_filename
|
||||
size_change_word = (old_size - new_size) > 0 ? 'smaller' : 'larger'
|
||||
builder.say_status :gzip, "#{output_filename} (#{number_to_human_size((old_size - new_size).abs)} #{size_change_word})"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
alias :included :registered
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue