Skip to content

Commit

Permalink
Overwrite previously set CARGO_REGISTRIES_CRATES_IO_PROTOCOL
Browse files Browse the repository at this point in the history
  • Loading branch information
dtolnay committed Feb 15, 2023
1 parent 0313d8c commit df6c627
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,12 @@ runs:
- run: |
: enable Cargo sparse registry
# except on 1.66 and 1.67, on which it is unstable
if [ -z "${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set}" ]; then
if [ -z "${CARGO_REGISTRIES_CRATES_IO_PROTOCOL+set}" -o -f "${{runner.temp}}"/.implicit_cargo_registries_crates_io_protocol ]; then
touch "${{runner.temp}}"/.implicit_cargo_registries_crates_io_protocol || true
if rustc +${{steps.parse.outputs.toolchain}} --version --verbose | (! grep -q '^release: 1\.6[67]\.'); then
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV
else
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=git >> $GITHUB_ENV
fi
fi
shell: bash
Expand Down

0 comments on commit df6c627

Please sign in to comment.