Disable irrelevant validation in mountpoint prompt (#3280)

This commit is contained in:
codefiles 2025-03-20 17:29:20 -04:00 committed by GitHub
parent 4efc461b98
commit cc6716be99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -393,7 +393,7 @@ class PartitioningList(ListManager):
header += str(_('If mountpoint /boot is set, then the partition will also be marked as bootable.')) + '\n'
prompt = str(_('Mountpoint'))
mountpoint = prompt_dir(prompt, header, allow_skip=False)
mountpoint = prompt_dir(prompt, header, validate=False, allow_skip=False)
assert mountpoint
return mountpoint