[Updater > Module] Minor source cleanup

This commit is contained in:
Ducko 2022-03-16 10:40:58 +00:00
parent e24a05fc70
commit b8a04bc1a3
1 changed files with 3 additions and 3 deletions

View File

@ -263,7 +263,7 @@ const downloadModule = async (name, ver) => {
if (downloading.done === downloading.total) {
const succeeded = downloading.total - downloading.fail;
log('Modules', 'Done downloads', `${succeeded}/${downloading.total} success`);
log('Modules', 'Done downloads', `| ${succeeded}/${downloading.total} success`);
events.emit('downloading-modules-finished', {
succeeded,
@ -348,11 +348,11 @@ const finishInstall = (name, ver, success) => {
});
installing.done++;
log('Modules', 'Finished', `${name}@${ver}`, `(${installing.done}/${installing.total})`);
log('Modules', 'Finished', `${name}@${ver}`);
if ((bootstrapping && installing.done === installing.total) || installing.done === downloading.total) {
const succeeded = installing.total - installing.fail;
log('Modules', 'Done installs', `${succeeded}/${installing.total} success`);
log('Modules', 'Done installs', `| ${succeeded}/${installing.total} success`);
events.emit('installing-modules-finished', {
succeeded,