MCPcopy Create free account
hub / github.com/Botloader/botloader / pushUri

Method pushUri

botloader-vscode/src/guildspace.ts:245–253  ·  view source on GitHub ↗
(uri: vscode.Uri)

Source from the content-addressed store, hash-verified

243 }
244
245 async pushUri(uri: vscode.Uri) {
246 await vscode.window.withProgress({ location: vscode.ProgressLocation.SourceControl }, async progress => {
247 let index = await this.readIndexFile();
248 await this.pushSingleChange(uri, index);
249
250 await this.syncWorkspace();
251 await this.apiClient.reloadGuildVm(index.guild.id);
252 });
253 }
254
255 async pushAll() {
256 await vscode.window.withProgress({ location: vscode.ProgressLocation.SourceControl }, async progress => {

Callers

nothing calls this directly

Calls 4

readIndexFileMethod · 0.95
pushSingleChangeMethod · 0.95
syncWorkspaceMethod · 0.95
reloadGuildVmMethod · 0.80

Tested by

no test coverage detected