mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Fix syntax bug on retina file matching
This commit is contained in:
parent
647ec149ca
commit
f2f8a42f00
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ class Middleman::Extensions::AutomaticImageSizes < ::Middleman::Extension
|
||||||
begin
|
begin
|
||||||
width, height = ::FastImage.size(full_path, raise_on_failure: true)
|
width, height = ::FastImage.size(full_path, raise_on_failure: true)
|
||||||
# Check for @2x and @3x image
|
# Check for @2x and @3x image
|
||||||
retina = full_path.match/(@(\d)x\.[a-zA-Z]{3,4}$/)
|
retina = full_path.match(/@(\d)x\.[a-zA-Z]{3,4}$/)
|
||||||
if retina
|
if retina
|
||||||
factor = retina[1].to_i
|
factor = retina[1].to_i
|
||||||
width = width / factor
|
width = width / factor
|
||||||
|
|
Loading…
Reference in a new issue