From ad9969eac546580dc7d7e437d8d772017dbc161f Mon Sep 17 00:00:00 2001 From: Maurane GLAUDE Date: Fri, 30 Aug 2024 13:26:40 +0200 Subject: [PATCH] fix(gui.create_shortcut): fix version checking missing --- src/antares_web_installer/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/antares_web_installer/app.py b/src/antares_web_installer/app.py index 364b993..05f6289 100644 --- a/src/antares_web_installer/app.py +++ b/src/antares_web_installer/app.py @@ -153,6 +153,7 @@ def install_files(self): logger.info("No existing files found. Starting file copy...") copytree(self.source_dir, self.target_dir, dirs_exist_ok=True) logger.info("Files was successfully copied.") + self.version = self.check_version() self.update_progress(100) def copy_files(self):