Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index a57c4722..ae4ad9c9 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -242,7 +242,10 @@ class sys_command():#Thread):
if not os.path.isdir(self.exec_dir):
os.makedirs(self.exec_dir)
- commandlog.append(cmd + ' #emulated')
+ if self.kwargs['emulate']:
+ commandlog.append(cmd + ' #emulated')
+ else:
+ commandlog.append(cmd)
if start_callback: start_callback(self, *positionals, **kwargs)
#self.start()
self.run()