Skip to content

Commit

Permalink
github workflows: Stick with which instead of command -v
Browse files Browse the repository at this point in the history
... because even though it looks like a subshell, it apparently is not
evaluated through a shell but passed right into exec.
  • Loading branch information
chrysn committed Sep 2, 2021
1 parent 1c6b675 commit 8664eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ jobs:
TTN_DEV_ID="riot_lorawan_1" \
TTN_DEV_ID_ABP="riot_lorawan_1_abp" \
RIOTBASE=${RIOTBASE} \
$(command -v tox) -e test -- ${TOX_ARGS} \
$(which tox) -e test -- ${TOX_ARGS} \
${K} "${{ github.event.inputs.filter }}" -m "${{ matrix.pytest_mark }}"
- name: junit2html and XML deploy
if: always()
Expand Down

0 comments on commit 8664eb8

Please sign in to comment.