[Updater > Module] Minor source cleanup

This commit is contained in:
Ducko 2022-04-04 15:45:37 +01:00
parent 9bf21e63d1
commit 61d3201843
1 changed files with 7 additions and 13 deletions

View File

@ -195,16 +195,12 @@ const downloadModule = async (name, ver) => {
const path = join(downloadPath, name + '-' + ver + '.zip');
const stream = fs.createWriteStream(path);
stream.on('progress', ([cur, total]) => {
const progress = Math.min(100, Math.floor(100 * (cur / total)));
events.emit('downloading-module-progress', {
name,
progress,
cur,
total
});
});
stream.on('progress', ([ cur, total ]) => events.emit('downloading-module-progress', {
name,
progress: Math.min(100, Math.floor(100 * (cur / total))),
cur,
total
}));
log('Modules', 'Downloading', `${name}@${ver}`, 'from', url, 'to', path);
@ -304,11 +300,9 @@ const installModule = async (name, ver, path) => {
if (!y.includes('inflating')) return;
cur++;
const progress = Math.min(100, Math.floor(cur / total * 100));
events.emit('installing-module-progress', {
name,
progress,
progress: Math.min(100, Math.floor(cur / total * 100)),
cur,
total
});