From 82be293dfd532beb763c022f881bcac974d483a9 Mon Sep 17 00:00:00 2001 From: Michael Wright Date: Mon, 29 Jul 2019 07:51:44 +0200 Subject: [PATCH] Make appveyor build ignore rustfmt unavailability --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 9f6cc45af81..23268d7e0de 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -22,7 +22,7 @@ install: - del rust-toolchain - cargo install rustup-toolchain-install-master --debug || echo "rustup-toolchain-install-master already installed" - rustup-toolchain-install-master %RUSTC_HASH% -f -n master - - rustup component add rustfmt --toolchain nightly + - rustup component add rustfmt --toolchain nightly || echo "rustfmt night is unavailable" - rustup default master - set PATH=%PATH%;C:\Users\appveyor\.rustup\toolchains\master\bin - rustc -V