Ignore errors when uncommenting boot entries
* Allows using older ISOs which lack newer boot entries * Not a great idea, but it won't crash
This commit is contained in:
parent
f062f3ce71
commit
b05057d743
1 changed files with 1 additions and 1 deletions
|
|
@ -391,7 +391,7 @@ def update_boot_entries(boot_entries, boot_files, iso_label, ufd_label):
|
|||
'"s/#{}#//"'.format(b_comment),
|
||||
*configs,
|
||||
]
|
||||
run_program(cmd)
|
||||
run_program(cmd, check=False)
|
||||
|
||||
|
||||
def verify_sources(args, ufd_sources):
|
||||
|
|
|
|||
Loading…
Reference in a new issue