From d8da3f11eb4bcc51214bea78b24a5e2ab6533987 Mon Sep 17 00:00:00 2001 From: Conrad Mugisha Date: Fri, 28 Aug 2026 09:42:19 +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 ed462881..9099021f 100755 --- a/scripts/clientappctl +++ b/scripts/clientappctl @@ -45,7 +45,8 @@ def handle_start(src_dir, install_path): shutil.copytree(src_dir, install_path, dirs_exist_ok=True) # start application - run_script(f'{install_path}/start') + if run_script(f'{install_path}/start') != 0: + return 1 return 0 except Exception as ex: