We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dda71ec commit 502d09aCopy full SHA for 502d09a
src/common/types.ts
@@ -36,7 +36,7 @@ export interface ISvnInfo {
36
uuid: string;
37
};
38
wcInfo?: {
39
- wcrootAbspath: string;
+ wcrootAbspath?: string;
40
41
42
commit: {
src/pathNormalizer.ts
@@ -22,7 +22,7 @@ export class PathNormalizer {
22
constructor(public readonly repoInfo: ISvnInfo) {
23
this.repoRoot = Uri.parse(repoInfo.repository.root);
24
this.branchRoot = Uri.parse(repoInfo.url);
25
- if (repoInfo.wcInfo) {
+ if (repoInfo.wcInfo && repoInfo.wcInfo.wcrootAbspath) {
26
this.checkoutRoot = Uri.file(repoInfo.wcInfo.wcrootAbspath);
27
}
28
0 commit comments