From 15ec161ed78d155819817d213eb8e70297e19db0 Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Fri, 27 Oct 2017 10:55:43 -0400 Subject: [PATCH] Change exit value from install to -1 from -11 (#300) Clearly an extra '1' digit was inserted. Remove it. Signed-off-by: Brian J. Murrell --- chroma-bundles/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chroma-bundles/install b/chroma-bundles/install index 6bcbfb5438..85373353ba 100755 --- a/chroma-bundles/install +++ b/chroma-bundles/install @@ -614,7 +614,7 @@ def _check_repos(): 'You may also see this message if Red Hat Satellite repos are enabled.\n' 'To skip this check, please rerun with the --no-repo-check flag.') log.info("URLs that failed: %s" % ' '.join(urls)) - sys.exit(-11) + sys.exit(-1) def main():