Merge pull request #1144 from Cebtenzzre/fix-arch-package

Do not package send2trash on Arch Linux
This commit is contained in:
Andrew Senetar 2023-07-17 21:54:22 -05:00 committed by GitHub
commit 03be82c0b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ def package_arch():
# need to include them).
print("Packaging for Arch")
srcpath = op.join("build", "dupeguru-arch")
packages = ["hscommon", "core", "qt", "send2trash"]
packages = ["hscommon", "core", "qt"]
copy_files_to_package(srcpath, packages, with_so=True)
shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath)
debopts = json.load(open(op.join("pkg", "arch", "dupeguru.json")))