index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-08 17:14:21 +0100 |
---|---|---|
committer | Anton Hvornum <anton.feeds@gmail.com> | 2021-03-08 17:14:21 +0100 |
commit | 8bf3296749ebfddc5dfdcbb116547395438d371f (patch) | |
tree | 805dd878f47ad4aaf8a34f45d29ee2f9d1f747db /archinstall | |
parent | fb55e318e5dc87d05da4c636722d24ab9e9cb5b1 (diff) |
-rw-r--r-- | archinstall/lib/disk.py | 4 |
diff --git a/archinstall/lib/disk.py b/archinstall/lib/disk.py index 16d6f704..56c75767 100644 --- a/archinstall/lib/disk.py +++ b/archinstall/lib/disk.py @@ -184,7 +184,9 @@ class Partition(): return True if files > 0 else False def safe_to_format(self): - if self.target_mountpoint == '/boot' and self.has_content(): + if self.allow_formatting is False: + return False + elif self.target_mountpoint == '/boot' and self.has_content(): return False return True |