Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CI] fix the
! isCI
check in src/ci/run.sh
Using `if [ ! isCI ] || ...` doesn't run any command, just tests `isCI` as a string, whereas `if ! isCI || ...` will actually run the `isCI` command and negate its exit status.
- Loading branch information