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.
2 parents 3048c2a + 3d90a0e commit b460e27Copy full SHA for b460e27
src/repository.ts
@@ -380,7 +380,6 @@ export class Repository {
380
if (status.path === ".") {
381
this.isIncomplete = status.status === Status.INCOMPLETE;
382
this.needCleanUp = status.wcStatus.locked;
383
- continue;
384
}
385
386
// If exists a switched item, the repository is incomplete
src/svnRepository.ts
@@ -45,6 +45,10 @@ export class Repository {
45
46
file = path.relative(this.workspaceRoot, file);
47
48
+ if (file === "") {
49
+ file = ".";
50
+ }
51
+
52
// Fix Peg Revision Algorithm (http://svnbook.red-bean.com/en/1.8/svn.advanced.pegrevs.html)
53
if (/@/.test(file)) {
54
file += "@";
0 commit comments