File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 78
78
- run : |
79
79
: install rustup if needed on windows
80
80
if ! command -v rustup &>/dev/null; then
81
- curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail --remote-name https://static.rust-lang.org/rustup/dist/${{ runner.arch == 'ARM64' && 'aarch64' || 'x86_64' }}-pc-windows-msvc/rustup-init.exe
82
- ./ rustup-init.exe --default-toolchain none --no-modify-path -y
81
+ curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail https://static.rust-lang.org/rustup/dist/${{ runner.arch == 'ARM64' && 'aarch64' || 'x86_64' }}-pc-windows-msvc/rustup-init.exe --output '${{runner.temp}}\rustup-init.exe'
82
+ '${{runner.temp}}\ rustup-init.exe' --default-toolchain none --no-modify-path -y
83
83
echo "$USERPROFILE/.cargo/bin" >> $GITHUB_PATH
84
84
fi
85
85
if: runner.os == 'Windows'
You can’t perform that action at this time.
0 commit comments