1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2024-12-21 10:59:03 +00:00

Changed to -F option to build everything (source and binary packages).

This commit is contained in:
KIAaze 2020-05-20 23:15:49 +01:00
parent ea191a8924
commit 0e8cd32a6e

View File

@ -90,7 +90,7 @@ def package_debian_distribution(distribution):
) )
shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath) shutil.copy(op.join("images", "dgse_logo_128.png"), srcpath)
os.chdir(destpath) os.chdir(destpath)
cmd = "dpkg-buildpackage -S -us -uc" cmd = "dpkg-buildpackage -F -us -uc"
os.system(cmd) os.system(cmd)
os.chdir("../..") os.chdir("../..")