index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | codefiles <11915375+codefiles@users.noreply.github.com> | 2023-09-28 07:00:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-28 21:00:06 +1000 |
commit | 3695c37bc4c530cc381ccee86e3e190f50a4a416 (patch) | |
tree | a76f9b9a4ba90997f8e5fe6329d19a1a8327bdcc /archinstall/lib/disk | |
parent | 1e296b263714017596beeca27744a51c75f29504 (diff) |
-rw-r--r-- | archinstall/lib/disk/device_handler.py | 12 |
diff --git a/archinstall/lib/disk/device_handler.py b/archinstall/lib/disk/device_handler.py index 066d3295..f2835b7b 100644 --- a/archinstall/lib/disk/device_handler.py +++ b/archinstall/lib/disk/device_handler.py @@ -546,12 +546,16 @@ class DeviceHandler(object): info(f'Device already mounted at {target_mountpoint}') return - str_options = ','.join(options) - str_options = f'-o {str_options}' if str_options else '' + cmd = ['mount'] - mount_fs = f'-t {mount_fs}' if mount_fs else '' + if len(options): + cmd.extend(('-o', ','.join(options))) + if mount_fs: + cmd.extend(('-t', mount_fs)) - command = f'mount {mount_fs} {str_options} {dev_path} {target_mountpoint}' + cmd.extend((str(dev_path), str(target_mountpoint))) + + command = ' '.join(cmd) debug(f'Mounting {dev_path}: {command}') |