From 3bae392285fe8f9a458a2ba3fdd9fbd97e1c0bb7 Mon Sep 17 00:00:00 2001 From: chopster44 Date: Sat, 29 Nov 2025 23:15:17 +0000 Subject: [PATCH] communicate error --- src/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); + }); }); } }