Skip to content

Commit

Permalink
Fix downloading NaN [#164628113] (#890)
Browse files Browse the repository at this point in the history
* remove message
  • Loading branch information
simonovic86 authored Mar 14, 2019
1 parent 68193a3 commit 73a00f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion check-updates.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ class AutoUpdate {
log.warn(`Starting downloading: ${name}`);
});
autoupdater.on('download.progress', (name, perc) => {
process.stdout.write(`Downloading ${perc}% \x1B[0G`);
// skip logging for now
});
autoupdater.on('download.end', (name) => {
log.warn(`Downloaded ${name}`);
Expand Down
2 changes: 1 addition & 1 deletion modules/Update.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Update {
logger.log(`Starting downloading: ${name}`);
});
this.autoupdater.on('download.progress', (name, perc) => {
process.stdout.write(`Downloading ${perc}% \x1B[0G`);
// skip logging for now
});
this.autoupdater.on('download.end', (name) => {
logger.log(`Downloaded ${name}`);
Expand Down

0 comments on commit 73a00f7

Please sign in to comment.