if --beta is chosen, do not validate build before downloading

This commit is contained in:
Graham R Pugh 2020-08-05 11:22:18 +02:00
parent 70fda7b098
commit b90cdda765

View File

@ -862,7 +862,9 @@ def main():
# skip if build is not suitable for current device # skip if build is not suitable for current device
# and a validation parameter was chosen # and a validation parameter was chosen
if not_valid and (args.validate or args.auto or args.version or args.os): if not_valid and (
args.validate or (args.auto or args.version or args.os) and not args.beta
):
continue continue
# skip if a version is selected and it does not match # skip if a version is selected and it does not match