Skip to content

Commit 5bcb1d1

Browse files
committed
fix conflicting xargs options
1 parent 341e1bf commit 5bcb1d1

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)