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:
2Shirt 2019-04-18 20:00:37 -07:00
parent f062f3ce71
commit b05057d743
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -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):