Skip to content

Commit d5ed5e6

Browse files
committed
Fix the bash condition
1 parent 64ae382 commit d5ed5e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ if ! isCI || isCiBranch auto || isCiBranch beta || isCiBranch try || isCiBranch
6262
fi
6363

6464
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-verbose-configure"
65-
if [ -n $DISABLE_SCCACHE ]; then
65+
if [ -z "$DISABLE_SCCACHE" ]; then
6666
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --enable-sccache"
6767
fi
6868
RUST_CONFIGURE_ARGS="$RUST_CONFIGURE_ARGS --disable-manage-submodules"

0 commit comments

Comments
 (0)