ci: discard misleading `cargo uninstall` errors in bk post-checkout hook (#32139)
This commit is contained in:
parent
60e36afd42
commit
26be1a3a0c
|
@ -39,6 +39,6 @@ source ci/env.sh
|
|||
# HACK: These are in our docker images, need to be removed from CARGO_HOME
|
||||
# because we try to cache downloads across builds with CARGO_HOME
|
||||
# cargo lacks a facility for "system" tooling, always tries CARGO_HOME first
|
||||
cargo uninstall cargo-audit || true
|
||||
cargo uninstall svgbob_cli || true
|
||||
cargo uninstall mdbook || true
|
||||
cargo uninstall cargo-audit &>/dev/null || true
|
||||
cargo uninstall svgbob_cli &>/dev/null || true
|
||||
cargo uninstall mdbook &>/dev/null || true
|
||||
|
|
Loading…
Reference in New Issue