Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2019-04-10 11:01:18 +0200
committerAnton Hvornum <anton.feeds@gmail.com>2019-04-10 11:01:18 +0200
commit73fd4417346b02335a6a24baabd5663cb36d02e8 (patch)
treee4adcb2a9bfb19f8743853679f66ae3cf98de366
parent2037b6c0c11f4e92902bbbd71e32396c26011304 (diff)
Wrapping is not systemd-nspawn's coup of tea
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 415fcb61..68142eea 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -537,7 +537,7 @@ if __name__ == '__main__':
if 'no-chroot' in opts and opts['no-chroot']:
o = run(command, opts)
else:
- o = run('systemd-nspawn -D /mnt --machine temporary "{c}"'.format(c=command), opts)
+ o = run('systemd-nspawn -D /mnt --machine temporary {c}'.format(c=command), opts)
if type(conf[title][raw_command]) == bytes and len(conf[title][raw_command]) and not conf[title][raw_command] in o:
print('[W] Post install command failed: {}'.format(o.decode('UTF-8')))
#print(o)