index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-15 17:31:14 -0400 |
---|---|---|
committer | Dylan Taylor <dylan@dylanmtaylor.com> | 2021-05-15 17:31:14 -0400 |
commit | 81423330aafa3bb050ccb507f404658b4a903c50 (patch) | |
tree | 9868a19ecb0ab348c883a69e3de02048e3cfa852 /archinstall/lib/disk.py | |
parent | 3ee38afce1d8f3680245293f8f97353054afd52a (diff) | |
parent | c036856a3e774d79971a9ff20327d4a973232bfc (diff) |
-rw-r--r-- | archinstall/lib/disk.py | 5 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 440ff6c4..410bb481 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -388,7 +388,10 @@ class Partition: pathlib.Path(target).mkdir(parents=True, exist_ok=True) try: - sys_command(f'/usr/bin/mount {self.path} {target}') + if options: + sys_command(f'/usr/bin/mount -o {options} {self.path} {target}') + else: + sys_command(f'/usr/bin/mount {self.path} {target}') except SysCallError as err: raise err |