Fix regression in handling of build errors
This commit is contained in:
parent
c78b952c3d
commit
3abce4259f
2 changed files with 13 additions and 9 deletions
|
|
@ -52,7 +52,7 @@ def main():
|
|||
log.error(e.explanation)
|
||||
sys.exit(1)
|
||||
except BuildError as e:
|
||||
log.error("Service '%s' failed to build." % e.service.name)
|
||||
log.error("Service '%s' failed to build: %s" % (e.service.name, e.reason))
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue