1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

github workflows: Stick with which instead of command -v

... because even though it looks like a subshell, it apparently is not
evaluated through a shell but passed right into exec.
This commit is contained in:
chrysn 2021-08-27 19:06:44 +02:00
parent 1c6b675d9f
commit 8664eb8ffc

View File

@ -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()