fix(releases): spawn fixes to overcome npx and powershell
This commit is contained in:
@@ -28,9 +28,10 @@ const result = spawnSync('npx', [
|
||||
'-s',
|
||||
'-r',
|
||||
'0'
|
||||
], { stdio: 'inherit' });
|
||||
], { stdio: 'inherit', shell: true });
|
||||
|
||||
if (result.status !== 0) {
|
||||
console.log(result)
|
||||
console.error('Failed to generate changelog');
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user