refactor: remove the ability to update tipi through the ui
This commit is contained in:
parent
e9da22f686
commit
49f025e188
1 changed files with 1 additions and 4 deletions
|
@ -407,16 +407,13 @@ export class SystemExecutors {
|
|||
bar.stop();
|
||||
this.logger.error(`Failed to download Tipi: ${err}`);
|
||||
spinner.fail(`\nFailed to download Tipi ${targetVersion}`);
|
||||
writer.close();
|
||||
reject(err);
|
||||
});
|
||||
|
||||
writer.on('finish', () => {
|
||||
this.logger.info('Download complete');
|
||||
bar.stop();
|
||||
writer.close(() => {
|
||||
resolve('');
|
||||
});
|
||||
resolve('');
|
||||
});
|
||||
});
|
||||
}).catch((e) => {
|
||||
|
|
Loading…
Reference in a new issue