From 605702f19fa2e0af1850c5692db456b4a9e6f60e Mon Sep 17 00:00:00 2001 From: Conrad Mugisha Date: Fri, 28 Aug 2026 09:45:55 +0000 Subject: [PATCH] Apply 1 suggestion(s) to 1 file(s) Co-authored-by: GitLab Duo --- scripts/clientappctl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/clientappctl b/scripts/clientappctl index e1f3250c..1a72a6f6 100755 --- a/scripts/clientappctl +++ b/scripts/clientappctl @@ -120,7 +120,7 @@ def uninstall_app(args: argparse.Namespace, install_path) -> int: subprocess.check_output(stop_path) # reset vols, networks - subprocess.check_output(['docker', 'compose', f'-f {install_path}/docker-compose.yml', 'down', '-v']) + subprocess.check_output(['docker', 'compose', '-f', f'{install_path}/docker-compose.yml', 'down', '-v']) if os.path.exists(install_path): shutil.rmtree(install_path)