Skip to content

Commit

Permalink
chore: do not slice error in IA (#9487)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrandolf committed Jan 11, 2023
1 parent 3fde005 commit 000ad18
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions tools/analyze_issue.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,7 @@ This issue has an invalid Puppeteer version: \`${value}\`. Versions must follow
await mkdir('out');
Promise.all([
writeFile(join('out', 'main.ts'), mvce.split('\n').slice(1, -1).join('\n')),
writeFile(
join('out', 'puppeteer-error.txt'),
error.split('\n').slice(1, -1).join('\n')
),
writeFile(join('out', 'puppeteer-error.txt'), error),
writeFile(
join('out', 'puppeteer.config.js'),
configuration.split('\n').slice(1, -1).join('\n')
Expand Down

0 comments on commit 000ad18

Please sign in to comment.