Only show the error message on missing deps
This commit is contained in:
parent
2fea36536f
commit
a1336ee193
@ -231,9 +231,9 @@ def run_build(args):
|
||||
with gha_group(f"[{ pkg['repo'] }] { pkg['name'] }..."):
|
||||
try:
|
||||
build_package(pkg, builddir)
|
||||
except MissingDependencyError:
|
||||
except MissingDependencyError as e:
|
||||
print("missing deps")
|
||||
traceback.print_exc()
|
||||
print(e)
|
||||
continue
|
||||
except BuildTimeoutError:
|
||||
print("timeout")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user