We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86411e4 commit 8625029Copy full SHA for 8625029
ci/install-rust.sh
@@ -47,13 +47,13 @@ if [ "$OS" = "windows" ]; then
47
fi
48
49
echo "Query rust and cargo versions"
50
+command -v rustc
51
+command -v cargo
52
+command -v rustup
53
rustc -Vv
54
cargo -V
55
rustup -Vv
56
rustup show
-which rustc
-which cargo
-which rustup
57
58
echo "Generate lockfile"
59
N=5
ci/run-docker.sh
@@ -62,7 +62,7 @@ build_switch() {
62
kvm=""
63
64
65
- cp "$(which rustup)" "$(rustc --print sysroot)/bin"
+ cp "$(command -v rustup)" "$(rustc --print sysroot)/bin"
66
67
docker run \
68
--rm \
0 commit comments