fix(releases): spawn fixes to overcome npx and powershell

This commit is contained in:
2025-07-12 13:23:11 -05:00
parent a20d377834
commit eed01197c0

View File

@@ -28,9 +28,10 @@ const result = spawnSync('npx', [
'-s', '-s',
'-r', '-r',
'0' '0'
], { stdio: 'inherit' }); ], { stdio: 'inherit', shell: true });
if (result.status !== 0) { if (result.status !== 0) {
console.log(result)
console.error('Failed to generate changelog'); console.error('Failed to generate changelog');
process.exit(1); process.exit(1);
} }