mirror of
https://github.com/game-ci/unity-test-runner.git
synced 2026-01-28 21:59:06 +08:00
* fix unary operator expected error The if comparisons can sometimes compare an empty variable, which gives errors like this: ``` /steps/run_tests.sh: line 71: [: =: unary operator expected ``` This PR should fix the script to address that problem. See an explanation of why this error happens here: https://codefather.tech/blog/bash-unary-operator-expected/ * fix missing quote * Posix shell compliance Posix shell does not do ==, it only does one = * consistent spaces