Return 0 if everything ok as excepted in a shell
This commit is contained in:
parent
9d496c6854
commit
7d268ea0e8
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ def run(config):
|
|||
|
||||
|
||||
def main():
|
||||
return run(config)
|
||||
return 0 if run(config) else 1
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Reference in a new issue