mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
Reformatted run command
This commit is contained in:
4
preinstall
vendored
4
preinstall
vendored
@@ -25,8 +25,8 @@ for package in required_packages.to_be_installed:
|
|||||||
packages = packages + package + " "
|
packages = packages + package + " "
|
||||||
try:
|
try:
|
||||||
breakpoint()
|
breakpoint()
|
||||||
ret = run("sudo pacman -S %s") % packages
|
ret = run("sudo", "pacman", "-S", packages)
|
||||||
print(ret)
|
print(ret)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
ret = run("pacman -S %s") % packages
|
ret = run("pacman", "-S", packages)
|
||||||
print(ret)
|
print(ret)
|
||||||
|
|||||||
Reference in New Issue
Block a user