Fixed upgrade process to properly upgrade bazarr.py when it's updated. #2456

This commit is contained in:
morpheus65535 2024-04-18 22:34:10 -04:00
parent 0322f22a51
commit a39d874d3b
1 changed files with 1 additions and 2 deletions

View File

@ -160,8 +160,7 @@ def apply_update():
'BAZARR was unable to delete the previous build directory during upgrade process.')
for file in archive.namelist():
if file.startswith(zip_root_directory) and file != zip_root_directory and not \
file.endswith('bazarr.py'):
if file.startswith(zip_root_directory) and file != zip_root_directory:
file_path = os.path.join(bazarr_dir, file[len(zip_root_directory):])
parent_dir = os.path.dirname(file_path)
os.makedirs(parent_dir, exist_ok=True)