do not upload empty file

This commit is contained in:
Louis Abel 2023-08-03 08:15:48 -07:00
parent cb9165a243
commit d232ddce1d
Signed by: label
GPG Key ID: 2A6975660E424560
1 changed files with 5 additions and 0 deletions

View File

@ -432,6 +432,11 @@ class SrpmImport(Import):
self.import_lookaside(git_repo_path, self.rpm_name, branch,
sources, self.dest_lookaside)
# Temporary hack like with git.
dest_gitignore_file = f'{git_repo_path}/.gitignore'
if os.path.exists(dest_gitignore_file):
os.remove(dest_gitignore_file)
gitutil.add_all(repo)
verify = repo.is_dirty()