Apply 1 suggestion(s) to 1 file(s)

Co-authored-by: GitLab Duo <gitlab-duo@gitlab.com>
This commit is contained in:
2026-08-28 09:45:28 +00:00
co-authored by GitLab Duo
parent d8da3f11eb
commit d04fd97791
+2 -1
View File
@@ -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: