File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ lint-readmes:
4444 set -e
4545 echo " Checking READMEs are up-to-date..."
4646 if ! command -v cargo-rdme &> / dev/ null; then
47- cargo install cargo-rdme
47+ cargo install cargo-rdme --locked
4848 fi
4949 for toml in $(find program-libs sdk-libs -name ' .cargo-rdme.toml' -type f); do
5050 crate_dir=$(dirname " $toml" )
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ CARGO_BUILD_JOBS="$CLIPPY_JOBS" cargo clippy \
2828# Regenerate READMEs with cargo-rdme
2929echo " Regenerating READMEs..."
3030if ! command -v cargo-rdme & > /dev/null; then
31- cargo install cargo-rdme
31+ cargo install cargo-rdme --locked
3232fi
3333for toml in $( find program-libs sdk-libs -name ' .cargo-rdme.toml' -type f) ; do
3434 crate_dir=$( dirname " $toml " )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ cargo clippy --workspace --all-features --all-targets -- -D warnings
2020# Check that READMEs are up-to-date with cargo-rdme
2121echo " Checking READMEs are up-to-date..."
2222if ! command -v cargo-rdme & > /dev/null; then
23- cargo install cargo-rdme
23+ cargo install cargo-rdme --locked
2424fi
2525for toml in $( find program-libs sdk-libs -name ' .cargo-rdme.toml' -type f) ; do
2626 crate_dir=$( dirname " $toml " )
You can’t perform that action at this time.
0 commit comments