From d533e36b88b6225f5b16dbc436b89cf171570e6b Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 9 Jun 2019 20:58:32 +0200 Subject: Enhancing debug information for failed command executions --- archinstall.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'archinstall.py') diff --git a/archinstall.py b/archinstall.py index 4d91cd9c..a86a9a04 100644 --- a/archinstall.py +++ b/archinstall.py @@ -193,8 +193,9 @@ class sys_command(): exit_code = os.waitpid(self.pid, 0)[1] if exit_code != 0: - print('[E] Command "{}" exited with status code:'.format(self.cmd[0]), exit_code) + print('[E] Command "{}" on line ~150 exited with status code:'.format(self.cmd[0]), exit_code) print(trace_log) + print('[?] Command executed: {}'.format(self.cmd)) exit(1) def simple_command(cmd, opts=None, *args, **kwargs): @@ -304,7 +305,8 @@ def grab_partitions(dev): for part in r['blockdevices'][0]['children']: size = os.statvfs(dev + part['name'][len(drive_name):]) parts[part['name'][len(drive_name):]] = { - 'size' : size.f_frsize * size.f_bavail + 'size' : size.f_frsize * size.f_bavail, + 'blocksize' : size.f_frsize * size.f_blocks } return parts -- cgit v1.2.3-70-g09d2