Skip to content

Commit 64aa465

Browse files
[CI] Fix running stubtest when multiple stubs have changed (#14677)
1 parent 07557a4 commit 64aa465

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/stubtest_third_party.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
function find_stubs {
5757
git diff --name-only origin/${{ github.base_ref }} HEAD | \
5858
egrep ^stubs/ | cut -d "/" -f 2 | sort -u | \
59-
(while read stub; do [ -d "stubs/$stub" ] && echo "$stub" || true; done)
59+
(while read stub; do [ -d "stubs/$stub" ] && echo -n "$stub " || true; done)
6060
}
6161
STUBS=$(find_stubs || echo '')
6262
echo "Changed stubs: $STUBS"

0 commit comments

Comments
 (0)