mirror of
https://github.com/th3r00t/pyShelf.git
synced 2026-04-28 01:59:35 -04:00
Stop capturing output
This commit is contained in:
4
installer
vendored
4
installer
vendored
@@ -376,9 +376,9 @@ for package in required_packages.to_be_installed:
|
|||||||
packages = packages + package + " "
|
packages = packages + package + " "
|
||||||
try:
|
try:
|
||||||
breakpoint()
|
breakpoint()
|
||||||
ret = sp.run(["sudo", "pacman", "-S", packages[0:-1]], capture_output=True)
|
ret = sp.run(["sudo", "pacman", "-S", packages[0:-1]])
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
ret = sp.run(["pacman", "-S", packages[0:-1]], capture_output=True)
|
ret = sp.run(["pacman", "-S", packages[0:-1]])
|
||||||
|
|
||||||
# Post install configurations
|
# Post install configurations
|
||||||
sysinstall.make_nginx_config(install_answers)
|
sysinstall.make_nginx_config(install_answers)
|
||||||
|
|||||||
Reference in New Issue
Block a user