refactor: remove the ability to update tipi through the ui

This commit is contained in:
Nicolas Meienberger 2023-09-02 19:21:18 +02:00
parent e9da22f686
commit 49f025e188

View File

@ -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) => {