Skip to content

Commit

Permalink
Rollup merge of rust-lang#131426 - cuviper:ci-debug-quotes, r=jieyouxu
Browse files Browse the repository at this point in the history
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
  • Loading branch information
jieyouxu authored Oct 9, 2024
2 parents b57a0fa + af5a704 commit 476b6e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 476b6e0

Please sign in to comment.