Archived
1
0

Fix issue where marketplace is undefined.

- Fix error logging from child process.
This commit is contained in:
Teffen Ellis
2021-10-03 18:42:27 -04:00
committed by Teffen
parent 2d7aeb5bf9
commit 672038c6af
3 changed files with 5 additions and 5 deletions

View File

@ -22,8 +22,8 @@ export const runVsCodeCli = async (args: DefaultedArgs): Promise<void> => {
try {
await cliProcessMain(args)
} catch (error) {
logger.error("Got error from VS Code", field("error", error))
} catch (error: any) {
logger.error("Got error from VS Code", error)
}
process.exit(0)