We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54938b6 commit ea229d1Copy full SHA for ea229d1
1 file changed
extractors/cds/tools/index-files.js
@@ -21,6 +21,7 @@ if (!existsSync(responseFile)) {
21
process.exit(0);
22
}
23
24
+// Read the response file and split it into lines, removing (filter(Boolean)) empty lines.
25
const responseFiles = readFileSync(responseFile, 'utf-8').split('\n').filter(Boolean);
26
// If the response file is empty, terminate.
27
if (statSync(responseFile).size === 0 || !responseFiles) {
0 commit comments