index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2019-06-20 16:31:05 +0000 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2019-06-20 16:31:05 +0000 |
commit | ed9e93970a26dd3e322a34f9ca3bdee470831af5 (patch) | |
tree | 894860c636eed53866490bb6830a69488b6d3b1f | |
parent | f355898af5db639987c2c61cea2234a177a98790 (diff) |
-rw-r--r-- | archinstall.py | 2 |
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(): |