Attempt to fix the var error

This commit is contained in:
alistair3149 2019-12-30 18:53:48 -05:00
parent 6ccc576dd6
commit 6a8ac76efe
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C

View file

@ -8,7 +8,7 @@ $root/vendor/bin/phpcbf $@
exit=$?
# Exit code 1 is used to indicate that all fixable errors were fixed correctly.
if [[ $exit == 1 ]]; then
if [ $exit == 1 ]; then
exit=0
fi