Don't handle BaseException in build scripts

This commit is contained in:
Marcel Admiraal 2020-12-12 10:05:42 +00:00
parent d62dcb6b01
commit 8ef5e3201c
7 changed files with 8 additions and 10 deletions

View file

@ -278,7 +278,7 @@ if webm_cpu_x86:
try:
yasm_found = True
subprocess.Popen([yasm_path, "--version"], stdout=devnull, stderr=devnull).communicate()
except:
except Exception:
yasm_found = False
if yasm_found:
break