Skip to content

Commit

Permalink
Fix #76096
Browse files Browse the repository at this point in the history
  • Loading branch information
octref committed Jun 25, 2019
1 parent 1d851ec commit 90b3c0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/api/node/extHostExtensionService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -562,8 +562,8 @@ export class ExtHostExtensionService implements ExtHostExtensionServiceShape {
c();
this._gracefulExit(0);
})
.catch((err) => {
e(err);
.catch((err: Error) => {
e(err.toString());
this._gracefulExit(1);
});
}
Expand Down

0 comments on commit 90b3c0a

Please sign in to comment.