From 12e584bb212fbb29f427c417c57265484799d8b9 Mon Sep 17 00:00:00 2001 From: Marc Reisner Date: Sun, 10 Nov 2019 11:25:00 -0600 Subject: [PATCH] fix: Stop retrieving info of repo root (#728) --- src/svnRepository.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/svnRepository.ts b/src/svnRepository.ts index 7c846c52..90421f83 100644 --- a/src/svnRepository.ts +++ b/src/svnRepository.ts @@ -57,7 +57,7 @@ export class Repository { const result = await this.exec([ "info", "--xml", - fixPegRevision(this.root) + fixPegRevision(this.workspaceRoot) ]); this._info = await parseInfoXml(result.stdout); }