Skip to content

Commit fcb995d

Browse files
committed
Added await on sdk install if not installed
1 parent 10bfad3 commit fcb995d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/setup_utilities/west-operations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export async function westUpdateWithRequirements(context: vscode.ExtensionContex
341341
saveSetupState(context, wsConfig, globalConfig);
342342

343343
if (!globalConfig.sdkInstalled) {
344-
vscode.commands.executeCommand("zephyr-ide.install-sdk");
344+
return await vscode.commands.executeCommand("zephyr-ide.install-sdk");
345345
}
346346
return true;
347347
}

src/test/open-current-directory.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ suite("Open Current Directory Test Suite", () => {
102102
});
103103

104104
test("Open Current Directory: Git Setup → Detect West.yml → Build", async function () {
105-
this.timeout(1800000);
105+
this.timeout(420000);
106106

107107
console.log("🚀 Starting open current directory test...");
108108

0 commit comments

Comments
 (0)