add missing awaits

This commit is contained in:
Nick Snyder
2017-10-14 00:16:14 -07:00
parent f0f2c909d4
commit 65ab631d51

View File

@@ -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);
}
}