index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-06-03 10:32:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 10:32:09 +0200 |
commit | 2731f82d0fd51e87c9c4454a25e1e01f2ae077cf (patch) | |
tree | 5e0c16078f135a7e5a80800c751362d065a8d07e /archinstall/lib | |
parent | f85f99dd401c588fd89cb60cf9dd026444345041 (diff) | |
parent | abcf3ea88a363d0d7055634b28e5b00e1323e6bb (diff) |
-rw-r--r-- | archinstall/lib/general.py | 4 |
diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index 3b62c891..f72311c9 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -13,7 +13,7 @@ from typing import Union from .exceptions import * from .output import log - +from .storage import storage def gen_uid(entropy_length=256): return hashlib.sha512(os.urandom(entropy_length)).hexdigest() @@ -265,6 +265,8 @@ class SysCommandWorker: if not self.pid: try: os.execve(self.cmd[0], self.cmd, {**os.environ, **self.environment_vars}) + if storage['arguments'].get('debug'): + log(f"Executing: {self.cmd}", level=logging.DEBUG) except FileNotFoundError: log(f"{self.cmd[0]} does not exist.", level=logging.ERROR, fg="red") self.exit_code = 1 |