Update package indentation fix

This commit is contained in:
Ruturaj4 2025-01-01 18:50:47 -06:00
parent 38747a7a5d
commit 20b75ab82f

View File

@ -74,9 +74,8 @@ class System(object):
env = dict(os.environ)
if self.pkgbin == "apt":
env["DEBIAN_FRONTEND"] = "noninteractive"
# Update indexes.
subprocess.check_call(["apt-get", "update"])
# Update indexes.
subprocess.check_call(["apt-get", "update"])
LOG.info("Running %r" % cmd)
subprocess.check_call(cmd, env=env)