Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 20:46:46 +0000
committerAnton Hvornum <anton.feeds+github@gmail.com>2019-11-18 20:46:46 +0000
commit5a4e1ec0925528003d49c8ba97d214987e750674 (patch)
tree530661081ecb833152ed6f1ab7cb8e048a4819b2
parent737c2b648d08816da78e3c5b818f1884d211fda9 (diff)
Cleaned up the entire format process into functions.
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 2749458d..452f62f2 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -828,7 +828,7 @@ def mount_luksdev(where='/dev/mapper/luksdev', to='/mnt', *positionals, **kwargs
o = b''.join(sys_command('/usr/bin/mount /dev/mapper/luksdev /mnt'))
return True
-def mount_boot(drive, partition, mountpoint='/mnt/boot', *positionals, **kwargs)
+def mount_boot(drive, partition, mountpoint='/mnt/boot', *positionals, **kwargs):
os.makedirs('/mnt/boot', exist_ok=True)
o = simple_command('/usr/bin/mount | /usr/bin/grep /mnt/boot') # /dev/dm-0
if len(o) <= 0: