mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
build: add logging to notes generator (#49300)
This commit is contained in:
committed by
GitHub
parent
9eb43f3286
commit
ace0beaa3f
@@ -105,12 +105,17 @@ class Pool {
|
|||||||
**/
|
**/
|
||||||
|
|
||||||
const runGit = async (dir: string, args: string[]) => {
|
const runGit = async (dir: string, args: string[]) => {
|
||||||
|
console.log(`Running git ${args.join(' ')} in ${dir}`);
|
||||||
const response = spawnSync('git', args, {
|
const response = spawnSync('git', args, {
|
||||||
cwd: dir,
|
cwd: dir,
|
||||||
encoding: 'utf8',
|
encoding: 'utf8',
|
||||||
stdio: ['inherit', 'pipe', 'pipe']
|
stdio: ['inherit', 'pipe', 'pipe']
|
||||||
});
|
});
|
||||||
if (response.status !== 0) {
|
if (response.status !== 0) {
|
||||||
|
console.error(`Git command failed: git ${args.join(' ')}`);
|
||||||
|
console.error('STDERR was ' + response.stderr.trim());
|
||||||
|
console.error('STDOUT was ' + response.stdout.trim());
|
||||||
|
console.log('Response status:', response.status);
|
||||||
throw new Error(response.stderr.trim());
|
throw new Error(response.stderr.trim());
|
||||||
}
|
}
|
||||||
return response.stdout.trim();
|
return response.stdout.trim();
|
||||||
|
|||||||
Reference in New Issue
Block a user