Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archinstall/lib/installer.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/archinstall/lib/installer.py b/archinstall/lib/installer.py
index e06f59a5..e4219323 100644
--- a/archinstall/lib/installer.py
+++ b/archinstall/lib/installer.py
@@ -92,10 +92,10 @@ class Installer():
return False
def mount(self, partition, mountpoint, create_mountpoint=True):
- if create_mountpoint and not os.path.isdir(f'{self.mountpoint}/srv/http'):
- os.makedirs(f'{self.mountpoint}/srv/http')
+ if create_mountpoint and not os.path.isdir(f'{self.mountpoint}{mountpoint}'):
+ os.makedirs(f'{self.mountpoint}{mountpoint}')
- partition.mount(f'{self.mountpoint}/srv/http')
+ partition.mount(f'{self.mountpoint}{mountpoint}')
def post_install_check(self, *args, **kwargs):
return [step for step, flag in self.helper_flags.items() if flag is False]