summaryrefslogtreecommitdiffstats
path: root/ogcli
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-11-21 16:46:18 +0100
committerOpenGnSys Support Team <soporte-og@soleta.eu>2024-11-21 17:05:24 +0100
commit10a3897f92ee058155987cea23eec28b28377d4b (patch)
tree9bbc4f0bb696adbb4c97b5c524b674eff8d1a853 /ogcli
parentea8210a805e860154e8b0b9446bdd30043b893e6 (diff)
cli: ensure the program returns 0 on success and 1 on error
propagate a returncode in each operation and make it the returncode of the program. Prevent sys.exit calls in post(), get() and delete() request handlers to enable cleanup code and error handling. Keep a basic error log inside the request functions if the connection can't be established or if the response contains an error code.
Diffstat (limited to 'ogcli')
-rwxr-xr-xogcli3
1 files changed, 2 insertions, 1 deletions
diff --git a/ogcli b/ogcli
index b2cbe38..f4b55d5 100755
--- a/ogcli
+++ b/ogcli
@@ -59,7 +59,8 @@ class CLI():
sys.exit(1)
# Call the command with the same name.
- getattr(self.ogcli, args.command)(sys.argv[2:])
+ res = getattr(self.ogcli, args.command)(sys.argv[2:])
+ sys.exit(res)
if __name__ == "__main__":