fix(releases): spawn fixes to overcome npx and powershell
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user