Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorLord Anton Hvornum <anton.feeds@gmail.com>2018-04-07 17:24:29 +0200
committerLord Anton Hvornum <anton.feeds@gmail.com>2018-04-07 17:24:29 +0200
commitd02aabbdfd8f60fe3a7f8bf5ca7b4b0531c4608f (patch)
tree85dda90f7fa8bb647a5ff293836134625793e5b7 /archinstall.py
parentd5ba7879438b7df64c101da1f55f433878c797eb (diff)
Further debugging
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index d16a271c..91fb9da1 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -263,7 +263,7 @@ if __name__ == '__main__':
for title in instructions:
print('[N] {}'.format(title))
for command in instructions[title]:
- opts = instructions[title] if instructions[title] else {}
+ opts = instructions[title][command] if instructions[title][command] 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: