Merge pull request #13425 from mvdbeek/fix_remove_file_in_repo_option

[21.09] Fix repository uploads with remove_repo_files_not_in_tar
This commit is contained in:
Marius van den Beek
2022-02-22 11:31:18 +01:00
committed by GitHub
+1 -1
View File
@@ -154,7 +154,7 @@ def handle_directory_changes(app, host, username, repository, full_path, filenam
repo_path = repository.repo_path(app)
content_alert_str = ''
files_to_remove = []
filenames_in_archive = [os.path.join(full_path, name) for name in filenames_in_archive]
filenames_in_archive = [os.path.normpath(os.path.join(full_path, name)) for name in filenames_in_archive]
if remove_repo_files_not_in_tar and not repository.is_new():
# We have a repository that is not new (it contains files), so discover those files that are in the
# repository, but not in the uploaded archive.