Actions: Fix syntax error

This commit is contained in:
Miepee 2022-02-04 14:54:49 +01:00
parent 297fdb730d
commit a8d338e1ca
1 changed files with 3 additions and 3 deletions

View File

@ -38,9 +38,9 @@ jobs:
# sets x, y, width, height params
vbArr=($vbStr)
x=${vbArr[0]}
y=$(vbArr[1]}
w=$(vbArr[2]}
h=$(vbArr[3]}
y=${vbArr[1]}
w=${vbArr[2]}
h=${vbArr[3]}
# Check that x and y are 0
if [[ $x != 0 || $y != 0 ]] ; then