This commit is contained in:
Joao Moreno
2018-02-22 10:22:10 +01:00
parent 03f92dde0a
commit ca58c21bfc
9 changed files with 16 additions and 26 deletions

View File

@@ -362,7 +362,6 @@ function getGitErrorCode(stderr: string): string | undefined {
export class Git {
private gitPath: string;
private version: string;
private env: any;
private _onOutput = new EventEmitter();
@@ -370,7 +369,6 @@ export class Git {
constructor(options: IGitOptions) {
this.gitPath = options.gitPath;
this.version = options.version;
this.env = options.env || {};
}