Skip to content

Commit af5a704

Browse files
committed
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.
1 parent 6f4ae0f commit af5a704

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)