Actions: Fix syntax error

This commit is contained in:
Miepee 2022-02-04 14:54:49 +01:00 committed by Riesi
parent 6705b0b56e
commit 6c2b0c2613
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