diff --git a/archinstall/lib/general.py b/archinstall/lib/general.py index 0aff5828..2c2fb530 100644 --- a/archinstall/lib/general.py +++ b/archinstall/lib/general.py @@ -530,6 +530,7 @@ def reboot(): def pid_exists(pid: int) -> bool: + print(f'Checking if pid {pid} exists.') try: return any(subprocess.check_output(['/usr/bin/ps', '--no-headers', '-o', 'pid', '-p', str(pid)]).strip()) except subprocess.CalledProcessError: