From 8664eb8ffcfac544ea2aa5aa0e7259ba8239c952 Mon Sep 17 00:00:00 2001 From: chrysn Date: Fri, 27 Aug 2021 19:06:44 +0200 Subject: [PATCH] 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. --- .github/workflows/release-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-test.yml b/.github/workflows/release-test.yml index 48fb27a822..8ed73bacb5 100644 --- a/.github/workflows/release-test.yml +++ b/.github/workflows/release-test.yml @@ -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()