Skip to content

Commit 872188a

Browse files
committed
Add missing awaits
1 parent fb79ad5 commit 872188a

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
@@ -195,7 +195,7 @@ export default createPlugin(
195195
"License is not valid or not assigned. Open License settings page to activate it.",
196196
});
197197

198-
commands.executeCommand("localstack.openLicensePage");
198+
await commands.executeCommand("localstack.openLicensePage");
199199

200200
await activateLicenseUntilValid(
201201
outputChannel,
@@ -220,7 +220,7 @@ export default createPlugin(
220220
}),
221221
);
222222

223-
commands.executeCommand("localstack.refreshStatusBar");
223+
await commands.executeCommand("localstack.refreshStatusBar");
224224

225225
progress.report({
226226
message: 'Finished configuring "localstack" AWS profiles.',

0 commit comments

Comments
 (0)