We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07557a4 commit 64aa465Copy full SHA for 64aa465
.github/workflows/stubtest_third_party.yml
@@ -56,7 +56,7 @@ jobs:
56
function find_stubs {
57
git diff --name-only origin/${{ github.base_ref }} HEAD | \
58
egrep ^stubs/ | cut -d "/" -f 2 | sort -u | \
59
- (while read stub; do [ -d "stubs/$stub" ] && echo "$stub" || true; done)
+ (while read stub; do [ -d "stubs/$stub" ] && echo -n "$stub " || true; done)
60
}
61
STUBS=$(find_stubs || echo '')
62
echo "Changed stubs: $STUBS"
0 commit comments