(control: vscode.SourceControl)
| 79 | } |
| 80 | |
| 81 | async syncScm(control: vscode.SourceControl) { |
| 82 | let root = control.rootUri; |
| 83 | let workspace = this.openGuildWorkspaces.find(ws => ws.folder.toString() === root?.toString()); |
| 84 | if (workspace) { |
| 85 | await workspace.syncWorkspaceWithProgress(); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | async syncOne() { |
| 90 | if (this.openGuildWorkspaces.length > 0) { |
no test coverage detected