index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-03-15 19:05:55 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-03-15 19:05:55 +0000 |
commit | 3c0963a0a10116342c75c11a5971df99e2e04a7b (patch) | |
tree | ba299100abade0b89d01f1543c900cafeddd9257 /archinstall.py | |
parent | 93780ba8881495c0c2b8ca509973411d2b11ae6c (diff) |
-rw-r--r-- | archinstall.py | 3 |
diff --git a/archinstall.py b/archinstall.py index 54cb391e..dfc2926f 100644 --- a/archinstall.py +++ b/archinstall.py @@ -313,6 +313,9 @@ class sys_command():#Thread): print(self.cmd[0], 'gave:', output.decode('UTF-8')) log(self.cmd[0],'gave:', output.decode('UTF-8'), origin='spawn', level=4) + if 'on_output' in self.kwargs: + self.kwargs['on_output'](self, output) + lower = output.lower() broke = False if 'events' in self.kwargs: |