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:55 +00:00
co-authored by GitLab Duo
parent d04fd97791
commit 605702f19f
+1 -1
View File
@@ -120,7 +120,7 @@ def uninstall_app(args: argparse.Namespace, install_path) -> int:
subprocess.check_output(stop_path) subprocess.check_output(stop_path)
# reset vols, networks # 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): if os.path.exists(install_path):
shutil.rmtree(install_path) shutil.rmtree(install_path)