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 2673f53 commit 212820aCopy full SHA for 212820a
extractors/cds/tools/index-files.js
@@ -199,8 +199,7 @@ responseFiles.forEach(rawCdsFilePath => {
199
{ shell: true }
200
);
201
if (result.error || result.status !== 0) {
202
- const stderrTruncated = quote(
203
- result.stderr.toString().split('\n').filter(line => line.startsWith('[ERROR]')).slice(-4).join('\n'));
+ const stderrTruncated = result.stderr.toString().split('\n').filter(line => line.startsWith('[ERROR]')).slice(-4).join('\n');
204
const errorMessage = `Could not compile the file ${cdsFilePath}.\nReported error(s):\n\`\`\`\n${stderrTruncated}\n\`\`\``;
205
console.log(errorMessage);
206
execFileSync(
0 commit comments