Remove silent exit
This commit is contained in:
parent
4317b5f718
commit
b8e515089f
1 changed files with 0 additions and 2 deletions
|
@ -19,8 +19,6 @@ def cli():
|
||||||
config = load_config()
|
config = load_config()
|
||||||
validate_config(config)
|
validate_config(config)
|
||||||
build(config)
|
build(config)
|
||||||
except PrematureExit:
|
|
||||||
return 0
|
|
||||||
except BaseException as e:
|
except BaseException as e:
|
||||||
logging.error(str(e))
|
logging.error(str(e))
|
||||||
return 1
|
return 1
|
||||||
|
|
Reference in a new issue