index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-18 16:51:17 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2019-11-18 16:51:17 +0100 |
commit | ece0b764bca7c9f66af31c63b0599a972ae5560d (patch) | |
tree | eb40b267cb35cfc144b43b9a11c92f782094cafd /archinstall.py | |
parent | 11d1e0f89c66d118aadafffa2f29dbad22e870d9 (diff) |
-rw-r--r-- | archinstall.py | 5 |
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() |