Skip to content

Commit 0d226b1

Browse files
minor #60918 fix conflicting xargs options (xabbuh)
This PR was merged into the 6.4 branch. Discussion ---------- fix conflicting xargs options | Q | A | ------------- | --- | Branch? | 6.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Issues | | License | MIT see https://github.com/symfony/symfony/actions/runs/15902111078/job/44848911141#step:8:10958 Commits ------- 5bcb1d1 fix conflicting xargs options
2 parents 341e1bf + 5bcb1d1 commit 0d226b1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ jobs:
212212
export SYMFONY_REQUIRE=">=$SYMFONY_VERSION"
213213
git fetch --depth=2 origin $SYMFONY_VERSION
214214
git checkout -m FETCH_HEAD
215-
PATCHED_COMPONENTS=$(echo "$PATCHED_COMPONENTS" | xargs dirname | xargs -n1 -I{} bash -c "[ -e '{}/phpunit.xml.dist' ] && echo '{}'" | sort || true)
215+
PATCHED_COMPONENTS=$(echo "$PATCHED_COMPONENTS" | xargs dirname | xargs -I{} bash -c "[ -e '{}/phpunit.xml.dist' ] && echo '{}'" | sort || true)
216216
if [[ $PATCHED_COMPONENTS ]]; then
217217
echo "::group::install phpunit"
218218
./phpunit install

0 commit comments

Comments
 (0)