From 88f1f85bf4b50897a080780f5403f7453350672b Mon Sep 17 00:00:00 2001 From: Lord Anton Hvornum Date: Sat, 7 Apr 2018 17:41:47 +0200 Subject: Problem with the optional parameters in the post install script --- archinstall.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'archinstall.py') diff --git a/archinstall.py b/archinstall.py index 91fb9da1..d471f161 100644 --- a/archinstall.py +++ b/archinstall.py @@ -263,10 +263,11 @@ if __name__ == '__main__': for title in instructions: print('[N] {}'.format(title)) for command in instructions[title]: - opts = instructions[title][command] if instructions[title][command] else {} + opts = instructions[title][command] if type(instructions[title][command]) in (dict, oDict) else {} + print('[N] Command: {} ({})'.format(command, opts)) o = run('arch-chroot /mnt {c}'.format(c=command), echo=True, **opts) - if instructions[title][command] and not instructions[title][command] in o: + if len(instructions[title][command]) and type(instructions[title][command]) == bytes and not instructions[title][command] in o: print('[W] Post install command failed: {}'.format(o.decode('UTF-8'))) #print(o) -- cgit v1.2.3-70-g09d2