I really forgot the []'s

This commit is contained in:
Raelon Masters
2020-05-10 13:15:38 -04:00
parent 852612707c
commit d2d6c6a573

4
preinstall vendored
View File

@@ -25,8 +25,8 @@ for package in required_packages.to_be_installed:
packages = packages + package + " "
try:
breakpoint()
ret = run("sudo", "pacman", "-S %s" % packages)
ret = run(["sudo", "pacman", "-S", packages])
print(ret)
except Exception as e:
ret = run("pacman", "-S %s" % packages)
ret = run(["pacman", "-S", packages])
print(ret)