mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
[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.
This commit is contained in:
parent
fdc0011561
commit
b1ececa669
@ -23,7 +23,7 @@ fi
|
||||
ci_dir=`cd $(dirname $0) && pwd`
|
||||
source "$ci_dir/shared.sh"
|
||||
|
||||
if [ ! isCI ] || isCiBranch auto || isCiBranch beta; then
|
||||
if ! isCI || isCiBranch auto || isCiBranch beta; then
|
||||
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --set build.print-step-timings --enable-verbose-tests"
|
||||
fi
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user