Skip to content

Commit 639346e

Browse files
authored
Rollup merge of rust-lang#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
2 parents e642442 + af5a704 commit 639346e

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
@@ -55,7 +55,7 @@ fi
5555
# If runner uses an incompatible option and `FORCE_CI_RUSTC` is not defined,
5656
# switch to in-tree rustc.
5757
if [ "$FORCE_CI_RUSTC" == "" ]; then
58-
echo "debug: `DISABLE_CI_RUSTC_IF_INCOMPATIBLE` configured."
58+
echo 'debug: `DISABLE_CI_RUSTC_IF_INCOMPATIBLE` configured.'
5959
DISABLE_CI_RUSTC_IF_INCOMPATIBLE=1
6060
fi
6161

0 commit comments

Comments
 (0)