index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-07-08 10:46:52 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-07-08 10:46:52 +0000 |
commit | aecd333ea3020c0c575948763089cc829c36c56d (patch) | |
tree | dd126920c2eb75180455a7ec454bf7f711548aa0 /archinstall/lib | |
parent | 3ed8db5ef0b065583e35f924f3f9d09290f03a37 (diff) |
-rw-r--r-- | archinstall/lib/profiles.py | 1 |
diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index bccdf34d..07bd3fd4 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -88,6 +88,7 @@ class Profile(): def install(self): instructions = self.load_instructions() if type(instructions) == Imported: + __builtins__['installation'] = self.installer # There's no easy way to give the imported profile the installer instance unless we require the profile-programmer to create a certain function that must be the same for all.. Which is a bit inconvenient so lets just make it truly global with instructions as runtime: log(f'Profile {self.name} finished successfully.') else: |