Skip to content

Commit 15bc2b7

Browse files
committed
Add missing awaits
1 parent 2653a5c commit 15bc2b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plugins/setup.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ export default createPlugin(
204204
"License is not valid or not assigned. Open License settings page to activate it.",
205205
});
206206

207-
commands.executeCommand("localstack.openLicensePage");
207+
await commands.executeCommand("localstack.openLicensePage");
208208

209209
await activateLicenseUntilValid(
210210
outputChannel,
@@ -229,7 +229,7 @@ export default createPlugin(
229229
}),
230230
);
231231

232-
commands.executeCommand("localstack.refreshStatusBar");
232+
await commands.executeCommand("localstack.refreshStatusBar");
233233

234234
progress.report({
235235
message: 'Finished configuring "localstack" AWS profiles.',

0 commit comments

Comments
 (0)