Skip to content

Commit

Permalink
Pass empty string to -z, instead of no arg
Browse files Browse the repository at this point in the history
This plays better with extending these conditionals with an `-o` or `-a`.
  • Loading branch information
dtolnay committed Feb 15, 2023
1 parent 0a1713a commit 0313d8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,22 +85,22 @@ runs:

- run: |
: disable incremental compilation
if [ -z ${CARGO_INCREMENTAL+set} ]; then
if [ -z "${CARGO_INCREMENTAL+set}" ]; then
echo CARGO_INCREMENTAL=0 >> $GITHUB_ENV
fi
shell: bash
- run: |
: enable colors in Cargo output
if [ -z ${CARGO_TERM_COLOR+set} ]; then
if [ -z "${CARGO_TERM_COLOR+set}" ]; then
echo CARGO_TERM_COLOR=always >> $GITHUB_ENV
fi
shell: bash
- 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}" ]; 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
Expand Down

0 comments on commit 0313d8c

Please sign in to comment.