Rollup merge of #131426 - cuviper:ci-debug-quotes, r=jieyouxu

Fix quotation marks around debug line in `src/ci/run.sh`

Without this change, the markdown-style backticks are treated as a shell
command substitution, which fails like so:

    /checkout/src/ci/run.sh: line 58: DISABLE_CI_RUSTC_IF_INCOMPATIBLE: command not found
    debug:  configured.

r? onur-ozkan
This commit is contained in:
Matthias Krüger 2024-10-09 20:27:25 +02:00 committed by GitHub
commit 639346eac5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ fi
# If runner uses an incompatible option and `FORCE_CI_RUSTC` is not defined,
# switch to in-tree rustc.
if [ "$FORCE_CI_RUSTC" == "" ]; then
echo "debug: `DISABLE_CI_RUSTC_IF_INCOMPATIBLE` configured."
echo 'debug: `DISABLE_CI_RUSTC_IF_INCOMPATIBLE` configured.'
DISABLE_CI_RUSTC_IF_INCOMPATIBLE=1
fi