Skip to content

Commit d56ecc9

Browse files
committed
Merge branch '7.2' into 7.3
* 7.2: fix conflicting xargs options
2 parents 55111bb + 40f9668 commit d56ecc9

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
@@ -214,7 +214,7 @@ jobs:
214214
export SYMFONY_REQUIRE=">=$SYMFONY_VERSION"
215215
git fetch --depth=2 origin $SYMFONY_VERSION
216216
git checkout -m FETCH_HEAD
217-
PATCHED_COMPONENTS=$(echo "$PATCHED_COMPONENTS" | xargs dirname | xargs -n1 -I{} bash -c "[ -e '{}/phpunit.xml.dist' ] && echo '{}'" | sort || true)
217+
PATCHED_COMPONENTS=$(echo "$PATCHED_COMPONENTS" | xargs dirname | xargs -I{} bash -c "[ -e '{}/phpunit.xml.dist' ] && echo '{}'" | sort || true)
218218
if [[ $PATCHED_COMPONENTS ]]; then
219219
echo "::group::install phpunit"
220220
./phpunit install

0 commit comments

Comments
 (0)