未验证 提交 856a5ad8 编写于 作者: S Sandeep Somavarapu 提交者: GitHub

Merge pull request #88714 from GabeDeBacker/user/gabrield/throwExceptionOnExtensionInstallFail

Allows extension install and uninstall command execution to throw exceptions back to caller
......@@ -252,6 +252,7 @@ CommandsRegistry.registerCommand({
}
} catch (e) {
onUnexpectedError(e);
throw e;
}
}
});
......@@ -284,6 +285,7 @@ CommandsRegistry.registerCommand({
await extensionManagementService.uninstall(extensionToUninstall, true);
} catch (e) {
onUnexpectedError(e);
throw e;
}
}
});
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册