mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
build: remove the tools folder (#24880)
This commit is contained in:
17
script/run-if-exists.js
Normal file
17
script/run-if-exists.js
Normal file
@@ -0,0 +1,17 @@
|
||||
const cp = require('child_process');
|
||||
const fs = require('fs');
|
||||
|
||||
const checkPath = process.argv[2];
|
||||
const command = process.argv.slice(3);
|
||||
|
||||
if (fs.existsSync(checkPath)) {
|
||||
const child = cp.spawn(
|
||||
`${command[0]}${process.platform === 'win32' ? '.cmd' : ''}`,
|
||||
command.slice(1),
|
||||
{
|
||||
stdio: 'inherit',
|
||||
cwd: checkPath
|
||||
}
|
||||
);
|
||||
child.on('exit', code => process.exit(code));
|
||||
}
|
||||
Reference in New Issue
Block a user