(1.0.15) bump

This commit is contained in:
2025-11-29 23:15:37 +00:00
parent 3bae392285
commit 8c3dd4c2e3
3 changed files with 9 additions and 3 deletions

5
dist/index.cjs.js vendored
View File

@@ -240,7 +240,10 @@ 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);
});
});
}
}

5
dist/index.es.js vendored
View File

@@ -238,7 +238,10 @@ 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);
});
});
}
}