Reformatted run command

This commit is contained in:
Raelon Masters
2020-05-09 22:32:11 -04:00
parent 08482a1546
commit 1572bf6347

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)