Skip to content

Commit 8664eb8

Browse files
committed
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.
1 parent 1c6b675 commit 8664eb8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ jobs:
150150
TTN_DEV_ID="riot_lorawan_1" \
151151
TTN_DEV_ID_ABP="riot_lorawan_1_abp" \
152152
RIOTBASE=${RIOTBASE} \
153-
$(command -v tox) -e test -- ${TOX_ARGS} \
153+
$(which tox) -e test -- ${TOX_ARGS} \
154154
${K} "${{ github.event.inputs.filter }}" -m "${{ matrix.pytest_mark }}"
155155
- name: junit2html and XML deploy
156156
if: always()

0 commit comments

Comments
 (0)