Skip to content

Commit a23cdce

Browse files
committed
:fix: fixed some bugs
1 parent 3bd9c09 commit a23cdce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/git/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function execGitSync(args, options = {}) {
2828
const { stdout, exitCode } = execa.sync('git', args, Object.assign({ stdio: 'ignore', timeout: TIMEOUT }, options));
2929
return exitCode === 0 ? (stdout || '').trim() : '';
3030
} catch (error) {
31-
logger.warn('execGitSync', error);
31+
logger.warn('[execGitSync]', error.message);
3232
return '';
3333
}
3434
}

0 commit comments

Comments
 (0)