From d04fd977915a08140094abac43aa9305b9c2be95 Mon Sep 17 00:00:00 2001 From: Conrad Mugisha Date: Fri, 28 Aug 2026 09:45:28 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: GitLab Duo --- scripts/clientappctl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/clientappctl b/scripts/clientappctl index 9099021f..e1f3250c 100755 --- a/scripts/clientappctl +++ b/scripts/clientappctl @@ -68,7 +68,8 @@ def handle_stop(install_path: str): try: # stop application - run_script(f'{install_path}/stop') + if run_script(f'{install_path}/stop') != 0: + return 1 return 0 except subprocess.CalledProcessError as e: