Actions: Slightly better phrasing

This commit is contained in:
Miepee 2022-02-04 16:56:08 +01:00 committed by Riesi
parent 4b61d9cf50
commit ba50e4d552
1 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ jobs:
# Check that viewbox' width and height are equal
if [[ $vbW != $vbH ]] ; then
errArr+=("$f has viewbox' width: $vbW and height: $vbH")
errArr+=("$f has viewbox -width: $vbW and -height: $vbH")
fi
# Check if normal width/height parameters exist and
@ -68,7 +68,7 @@ jobs:
w=${svgTags##*width=\"}
w=${h%%\"*}
if [[ $w != $vbW ]] ; then
errArr+=("$f has width: $w but viewbox width: $vbW")
errArr+=("$f has width: $w but viewbox-width: $vbW")
fi
fi
@ -77,7 +77,7 @@ jobs:
h=${svgTags##*height=\"}
h=${h%%\"*}
if [[ $h != $vbH ]] ; then
errArr+=("$f has height: $h but viewbox height: $vbH")
errArr+=("$f has height: $h but viewbox-height: $vbH")
fi
fi