This commit is contained in:
Pine Wu
2019-06-25 09:46:18 -07:00
parent 1d851ecfe2
commit 90b3c0ad5b

View File

@@ -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);
});
}