diff options
| author | Josh Stone <jistone@redhat.com> | 2024-10-08 18:31:44 -0700 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2024-10-08 18:31:44 -0700 |
| commit | af5a7045486404145544e3ec2ec2ec450b31e6f6 (patch) | |
| tree | 446bf845756f9e916a2b50968b4ba4cf754b51bb /src/ci | |
| parent | 6f4ae0f34503601e54680a137c1db0b81b56cc3d (diff) | |
| download | rust-af5a7045486404145544e3ec2ec2ec450b31e6f6.tar.gz rust-af5a7045486404145544e3ec2ec2ec450b31e6f6.zip | |
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.
Diffstat (limited to 'src/ci')
| -rwxr-xr-x | src/ci/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ci/run.sh b/src/ci/run.sh index 1ce54f9ecb3..3962c354c10 100755 --- a/src/ci/run.sh +++ b/src/ci/run.sh @@ -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 |
