Skip to content

Commit 335b919

Browse files
committed
Auto merge of #2193 - JohnTitor:fix-rustup-on-windows, r=JohnTitor
Attempt to fix the Rustup issue on Windows r? `@ghost`
2 parents f55661e + 0878242 commit 335b919

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ci/install-rust.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ else
1212
fi
1313
if [ "$OS" = "windows" ]; then
1414
: "${TARGET?The TARGET environment variable must be set.}"
15+
rustup self update
1516
rustup set profile minimal
16-
# FIXME: Add `--no-self-update` to avoid CI failure.
17-
rustup update --force $toolchain-"$TARGET" --no-self-update
17+
rustup update --force $toolchain-"$TARGET"
1818
rustup default $toolchain-"$TARGET"
1919
else
2020
rustup set profile minimal

0 commit comments

Comments
 (0)