diff --git a/operatorhub/tools/bundle.py b/operatorhub/tools/bundle.py index 9e91745a66..6082f66f34 100755 --- a/operatorhub/tools/bundle.py +++ b/operatorhub/tools/bundle.py @@ -304,5 +304,7 @@ def divider(title=''): if __name__ == "__main__": divider("BundleGen") config = buildConfig() - generate_bundle(config) + return_code = generate_bundle(config) + if return_code is not 0: + exit(return_code) newCSVmods(config)