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 4829baa commit db6c180Copy full SHA for db6c180
src/repository.ts
@@ -376,7 +376,6 @@ export class Repository {
376
if (status.path === ".") {
377
this.isIncomplete = status.status === Status.INCOMPLETE;
378
this.needCleanUp = status.wcStatus.locked;
379
- continue;
380
}
381
382
// 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