Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLord Anton Hvornum <anton.feeds@gmail.com>2018-04-08 14:02:08 +0200
committerLord Anton Hvornum <anton.feeds@gmail.com>2018-04-08 14:02:08 +0200
commitef455894e3d773dd728bf3613fd490f8cb4e686d (patch)
treed0747ab0d2b50f3f42e70fbf25997da0851e61fe
parent16ff533c81b0d9c92cd4fc2089e96ff4fa3f19a7 (diff)
Added debug output when options were given to the net-deploy command
-rw-r--r--archinstall.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/archinstall.py b/archinstall.py
index a16ff8fb..df857a87 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -296,6 +296,8 @@ if __name__ == '__main__':
print('[N] Network Deploy: {}'.format(title))
for command in conf[title]:
opts = conf[title][command] if type(conf[title][command]) in (dict, oDict) else {}
+ if len(opts):
+ print('[-] Options: {}'.format(opts))
#print('[N] Command: {} ({})'.format(command, opts))
o = run('arch-chroot /mnt {c}'.format(c=command), opts)