Actions: fix width being assigned wrong

This commit is contained in:
Miepee 2022-02-04 17:03:38 +01:00 committed by Riesi
parent ba50e4d552
commit db9ce7931a
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ jobs:
# Width comparison
if [[ $svgTags == *width* ]] ; then
w=${svgTags##*width=\"}
w=${h%%\"*}
w=${w%%\"*}
if [[ $w != $vbW ]] ; then
errArr+=("$f has width: $w but viewbox-width: $vbW")
fi