Swapped order of partition vs mountpoint in installation.mount()

This commit is contained in:
Anton Hvornum 2020-12-06 22:45:59 +01:00
parent f7d236c00f
commit c7228910a7
1 changed files with 1 additions and 2 deletions

View File

@ -89,10 +89,9 @@ class Installer():
self.log(f"Submit this zip file as an issue to https://github.com/Torxed/archinstall/issues", level=LOG_LEVELS.Warning)
return False
def mount(self, mountpoint, partition):
def mount(self, partition, mountpoint):
partition.mount(f'{self.mountpoint}/srv/http')
def post_install_check(self, *args, **kwargs):
return [step for step, flag in self.helper_flags.items() if flag is False]