mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-25 02:58:56 +01:00
add missing awaits
This commit is contained in:
@@ -204,7 +204,7 @@ class ExtHostSourceControlResourceGroup implements vscode.SourceControlResourceG
|
||||
return;
|
||||
}
|
||||
|
||||
this._commands.executeCommand(command.command, ...command.arguments);
|
||||
await this._commands.executeCommand(command.command, ...command.arguments);
|
||||
}
|
||||
|
||||
_takeResourceStateSnapshot(): SCMRawResourceSplice[] {
|
||||
@@ -532,6 +532,6 @@ export class ExtHostSCM {
|
||||
return;
|
||||
}
|
||||
|
||||
group.$executeResourceCommand(handle);
|
||||
await group.$executeResourceCommand(handle);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user