Fix wrong pacman error

This commit is contained in:
etorres4 2022-03-17 23:42:07 -07:00
parent fd398eeaf9
commit b621eebbc8

View File

@ -78,7 +78,7 @@ if __name__ == "__main__":
filename = args.filename filename = args.filename
# Run process that lists packages # Run process that lists packages
packages = subprocess.run([PACMAN_CMD, "-Qqem"], capture_output=True).stdout packages = subprocess.run([PACMAN_CMD, "-Qqen"], capture_output=True).stdout
# Write package list to file and perform upload # Write package list to file and perform upload
with tempfile.NamedTemporaryFile() as tmpfile: with tempfile.NamedTemporaryFile() as tmpfile: