diff --git a/src/index.ts b/src/index.ts index 82d5529..ce36af4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -282,7 +282,9 @@ export default class Updater { progressCallback(`Error on remote`); reject("Error: command does not exist"); } - }, () => { reject("Error: Failed to start notify"); }); + }, (error) => { reject("Error: Failed to start notify"); + console.error(error); + }); }); } }