We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f838410 commit 0a4ec5dCopy full SHA for 0a4ec5d
rustup-toolchain
@@ -13,6 +13,12 @@ set -e
13
#
14
# ./rustup-toolchain $COMMIT: Update "miri" toolchain and `rust-version` file to match that commit.
15
16
+# Make sure rustup-toolchain-install-master is installed.
17
+if ! which rustup-toolchain-install-master >/dev/null; then
18
+ echo "Please install rustup-toolchain-install-master by running 'cargo install rustup-toolchain-install-master'"
19
+ exit 1
20
+fi
21
+
22
# Determine new commit.
23
if [[ "$1" == "" ]]; then
24
NEW_COMMIT=$(cat rust-version)
0 commit comments