Skip to content

Commit 64c8850

Browse files
Fix Windows CI
1 parent 62ca1ec commit 64c8850

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

integrations/utils.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,10 @@ export function test(
362362
// Sort by filename, alphabetically
363363
return a[0].localeCompare(z[0])
364364
})
365-
.map(([file, content]) => `--- ${file} ---\n${content || '<EMPTY>'}`)
365+
.map(
366+
([file, content]) =>
367+
`--- ${file} ---\n${content.trim() === '' ? '<EMPTY>' : content}`,
368+
)
366369
.join('\n\n')
367370
.trim()}\n`
368371
},

0 commit comments

Comments
 (0)