Fix bug with not cleaning UI folder

This commit is contained in:
Matthias
2021-01-31 14:43:16 +01:00
parent 944d674eeb
commit 7b3d99819f
2 changed files with 5 additions and 5 deletions

View File

@@ -213,13 +213,12 @@ def start_install_ui(args: Dict[str, Any]) -> None:
curr_version = read_ui_version(dest_folder)
if curr_version == latest_version and not args.get('erase_ui_only'):
logger.info(f"UI already uptodate, FreqUI Version {curr_version}.")
logger.info(f"UI already up-to-date, FreqUI Version {curr_version}.")
return
clean_ui_subdir(dest_folder)
if args.get('erase_ui_only'):
clean_ui_subdir(dest_folder)
logger.info("Erased UI directory content. Not downloading new version.")
else:
# Download a new version
download_and_install_ui(dest_folder, dl_url, latest_version)