Skip to content

Commit 61f3ec4

Browse files
authored
Rollup merge of rust-lang#137946 - ehuss:ci-docker-readme, r=Kobzol
Fix docker run-local docs This fixes the docker run-local docs to have a valid cargo command.
2 parents afb88ed + 93b8279 commit 61f3ec4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ci/docker/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ the [`jobs.yml`](../github-actions/jobs.yml) file.
1111
To run a specific CI job locally, you can use the `citool` Rust crate:
1212

1313
```
14-
cargo --manifest-path src/ci/citool/Cargo.toml run run-local <job-name>
14+
cargo run --manifest-path src/ci/citool/Cargo.toml run-local <job-name>
1515
```
1616

1717
For example, to run the `x86_64-gnu-llvm-18-1` job:
1818
```
19-
cargo --manifest-path src/ci/citool/Cargo.toml run run-local x86_64-gnu-llvm-18-1
19+
cargo run --manifest-path src/ci/citool/Cargo.toml run-local x86_64-gnu-llvm-18-1
2020
```
2121

2222
The job will output artifacts in an `obj/<image-name>` dir at the root of a repository. Note

0 commit comments

Comments
 (0)