scripts/build-plugins-report: don't open report at the end

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2023-10-11 11:02:44 +02:00
committed by Camila Belo
parent 565dff3dac
commit ef26bd727a
3 changed files with 2 additions and 7 deletions
+1 -4
View File
@@ -17,7 +17,6 @@
const fs = require('fs-extra');
const path = require('path');
const open = require('open');
const { execFile: execFileCb } = require('child_process');
const { promisify } = require('util');
@@ -137,9 +136,7 @@ async function main() {
if (err) throw err;
});
console.log(`📄 Opening ${file} file...`);
open(file);
console.log(`📄 Report generated at ${file}`);
}
main(process.argv.slice(2)).catch(error => {