You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/extension.ts
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -35,11 +35,12 @@ export async function activate(context: vscode.ExtensionContext)
35
35
vscode.window.showInformationMessage("Microsoft WASM wasi core extension installed with success !");
36
36
returntrue;
37
37
},failure=>{
38
-
vscode.window.showErrorMessage(`Failed to install Microsoft WASM wasi core: ${failure} You will have to install ms-vscode.wasm-wasi-core yourself through the extensions tab.`);
38
+
console.error("Failed to install ms-vscode.wasm-wasi-core: ",failure);
39
+
vscode.window.showErrorMessage(`Failed to install Microsoft WASM wasi core. You will have to install ms-vscode.wasm-wasi-core yourself through the extensions tab.`);
39
40
returnfalse;
40
41
});
41
42
if(!installed){
42
-
return;
43
+
return;// Extension dependency failed to install.
43
44
}
44
45
}else{
45
46
vscode.window.showErrorMessage("Extension shader-validator failed to install dependencies. It will not launch the shader language server.");
0 commit comments