Merge pull request #36971 from keegancsmith/git-error-to-string

git: Include GitErrorData in GitError.toString
This commit is contained in:
João Moreno
2017-10-27 12:13:35 +02:00
committed by GitHub

View File

@@ -251,7 +251,7 @@ export class GitError {
gitCommand: this.gitCommand,
stdout: this.stdout,
stderr: this.stderr
}, [], 2);
}, null, 2);
if (this.error) {
result += (<any>this.error).stack;