Swapped order of partition vs mountpoint in installation.mount()
This commit is contained in:
parent
f7d236c00f
commit
c7228910a7
|
|
@ -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)
|
self.log(f"Submit this zip file as an issue to https://github.com/Torxed/archinstall/issues", level=LOG_LEVELS.Warning)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def mount(self, mountpoint, partition):
|
def mount(self, partition, mountpoint):
|
||||||
partition.mount(f'{self.mountpoint}/srv/http')
|
partition.mount(f'{self.mountpoint}/srv/http')
|
||||||
|
|
||||||
|
|
||||||
def post_install_check(self, *args, **kwargs):
|
def post_install_check(self, *args, **kwargs):
|
||||||
return [step for step, flag in self.helper_flags.items() if flag is False]
|
return [step for step, flag in self.helper_flags.items() if flag is False]
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue