bugfixes! what kind of drunk seafood wrote these?

This commit is contained in:
InsanePrawn 2021-10-05 16:36:44 +02:00
parent c1ece2d616
commit 643cc21d3c
2 changed files with 2 additions and 2 deletions

View file

@ -319,7 +319,7 @@ def add_package_to_repo(package: Package, arch: str):
for file in os.listdir(pkgbuild_dir):
# Forced extension by makepkg.conf
if file.endswith('.pkg.tar.xz') or file.endswith('.pkg.tar.zst'):
return add_file_to_repo(os.path.join(pkgbuild_dir, file), package.repo, arch)
add_file_to_repo(os.path.join(pkgbuild_dir, file), package.repo, arch)
def check_package_version_built(package: Package, arch) -> bool: