Skip to content

Commit 8d3bc71

Browse files
authored
build: prevent empty line being treated as commit
1 parent d65ba0c commit 8d3bc71

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

scripts/nightly.mts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ function getChangedPackages(force: boolean) {
3030
}
3131
)
3232
.split('\n')
33+
.filter(l => l.trim().length > 0)
3334
.map(l => {
3435
const p = l.split(';');
3536
return { hash: p[0], author: p[1] };

0 commit comments

Comments
 (0)