Further ESDP clean up.

This commit is contained in:
Patrick Fic
2025-12-11 10:14:44 -08:00
parent 26cd7762f3
commit d0d487abe8
9 changed files with 254 additions and 385 deletions

View File

@@ -35,15 +35,15 @@ console.log(`ARTIFACT_SUFFIX set to: '${artifactSuffix}'`);
if (process.argv.length > 2) {
const command = process.argv[2];
const args = process.argv.slice(3);
console.log(`Executing: ${command} ${args.join(' ')}`);
const child = spawn(command, args, {
stdio: 'inherit',
env: { ...process.env, ARTIFACT_SUFFIX: artifactSuffix },
shell: true
});
child.on('close', (code) => {
process.exit(code);
});