index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2019-04-14 18:55:35 +0200 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2019-04-14 18:55:35 +0200 |
commit | 35cfef9857ba198b3efd829f532b816cee886975 (patch) | |
tree | c8d475362e1b76d1c0379fe0d431410a13045be9 | |
parent | e3b60326e03a642de27a79b86a8aecf454c393de (diff) |
-rw-r--r-- | archinstall.py | 4 |
diff --git a/archinstall.py b/archinstall.py index 4e19c8ce..eaff3409 100644 --- a/archinstall.py +++ b/archinstall.py @@ -191,7 +191,11 @@ class sys_command(): # Bail bail bail! os.write(child_fd, b'shutdown now\n') + print('Shutdown initatied') + exit_code = os.waitpid(self.pid, 0)[1] + + print('Exit code:', exit_code) if exit_code != 0: print('[E] Command "{}" exited with status code:'.format(self.cmd[0]), exit_code) print(trace_log) |