()
| 253 | } |
| 254 | |
| 255 | async pushAll() { |
| 256 | await vscode.window.withProgress({ location: vscode.ProgressLocation.SourceControl }, async progress => { |
| 257 | let index = await this.readIndexFile(); |
| 258 | |
| 259 | for (let state of this.changedFilesGroup.resourceStates) { |
| 260 | await this.pushSingleChange(state.resourceUri, index); |
| 261 | } |
| 262 | |
| 263 | await this.syncWorkspace(); |
| 264 | await this.apiClient.reloadGuildVm(index.guild.id); |
| 265 | }); |
| 266 | } |
| 267 | |
| 268 | async pushScmGroup(group: vscode.SourceControlResourceGroup) { |
| 269 | await vscode.window.withProgress({ location: vscode.ProgressLocation.SourceControl }, async progress => { |
no test coverage detected