Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/installer.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2020-12-06 22:45:59 +0100
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-12-06 22:45:59 +0100
commitc7228910a7d2990ba9d34ac55d0d5f28ad9bbed6 (patch)
tree580cd891d4b24a05070d59fcc10757e68f6ae79f /archinstall/lib/installer.py
parentf7d236c00f5fb6bdd944dadb369697fd558bfdba (diff)
Swapped order of partition vs mountpoint in installation.mount()
Diffstat (limited to 'archinstall/lib/installer.py')
-rw-r--r--archinstall/lib/installer.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index 86eafc88..f06d38ea 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -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]