Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton.feeds@gmail.com>2019-06-20 16:31:05 +0000
committerAnton Hvornum <anton.feeds@gmail.com>2019-06-20 16:31:05 +0000
commited9e93970a26dd3e322a34f9ca3bdee470831af5 (patch)
tree894860c636eed53866490bb6830a69488b6d3b1f /archinstall.py
parentf355898af5db639987c2c61cea2234a177a98790 (diff)
Fixing rerun
Diffstat (limited to 'archinstall.py')
-rw-r--r--archinstall.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall.py b/archinstall.py
index 220304cf..3b76930d 100644
--- a/archinstall.py
+++ b/archinstall.py
@@ -591,7 +591,7 @@ if __name__ == '__main__':
if len(o) <= 0:
o = b''.join(sys_command('/usr/bin/mount /dev/mapper/luksdev /mnt').exec())
- os.makedirs('/mnt/boot')
+ os.makedirs('/mnt/boot', exist_ok=True)
o = b''.join(sys_command('/usr/bin/mount {drive}{partition_1} /mnt/boot'.format(**args)).exec())
if 'mirrors' in args and args['mirrors'] and 'country' in args and get_default_gateway_linux():