Skip to content

Commit

Permalink
Add missing backslashes in commands in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgospodinow committed Jan 27, 2024
1 parent ff4b672 commit 3cb770b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
working-directory: ./tests/healthypkg
run: |
docker run \
-e PACKAGE_TO_SCAN="./..."
-e PACKAGE_TO_SCAN="./..." \
--rm ${{ env.TEST_TAG }}
- name: Spot issues in an unhealthy package
Expand All @@ -59,7 +59,7 @@ jobs:
set +e
docker run \
-e PACKAGE_TO_SCAN="./..."
-e PACKAGE_TO_SCAN="./..." \
--rm ${{ env.TEST_TAG }}
if [[ $? -eq 0 ]]; then
Expand Down

0 comments on commit 3cb770b

Please sign in to comment.