Skip to content

Commit

Permalink
Merge pull request #72 from dtolnay/not
Browse files Browse the repository at this point in the history
Fix not -> !
  • Loading branch information
dtolnay authored Feb 15, 2023
2 parents 25dc93b + e6d955b commit 0a1713a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ runs:
: 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 rustc +${{steps.parse.outputs.toolchain}} --version --verbose | not grep -q '^release: 1\.6[67]\.'; then
if rustc +${{steps.parse.outputs.toolchain}} --version --verbose | (! grep -q '^release: 1\.6[67]\.'); then
echo CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse >> $GITHUB_ENV
fi
fi
Expand Down

0 comments on commit 0a1713a

Please sign in to comment.