Skip to content

Commit

Permalink
drop xargs
Browse files Browse the repository at this point in the history
  • Loading branch information
peteski22 committed Nov 18, 2024
1 parent 267040d commit a74d68a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_images_uv.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
id: modified-paths
run: |
if ${{ github.event_name == 'pull_request' }};then
changeset=$(git diff --name-only -r HEAD^1 HEAD | xargs)
changeset=$(git diff --name-only -r HEAD^1 HEAD)
else
changeset=$(git diff --name-only ${{ github.event.before }} ${{ github.event.after }} | xargs)
changeset=$(git diff --name-only ${{ github.event.before }} ${{ github.event.after }})
fi
echo "changeset: $changeset"
Expand Down

0 comments on commit a74d68a

Please sign in to comment.