From 2678af529ff8d1ecdcd107702d86aee2d14e41b3 Mon Sep 17 00:00:00 2001 From: Arief Date: Mon, 27 May 2024 15:55:00 +0200 Subject: [PATCH] used global variable to easily modify various variables --- scripts/menu.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/menu.py b/scripts/menu.py index 2505da7..f5ca857 100644 --- a/scripts/menu.py +++ b/scripts/menu.py @@ -3,6 +3,7 @@ from subprocess import run, Popen TERMINAL = 'gnome-terminal' +DOCKER_INSTRUCTIONS_URL = "https://github.com/Arief-AK/sarax/blob/main/Docs/Sarax%20with%20Docker.md" def open_terminal(command, terminal=TERMINAL): if terminal == 'gnome-terminal': @@ -53,7 +54,7 @@ def docker_config(system:str): elif choice == 2: install_docker_deps() elif choice == 3: - print("\nFollow the updated instructions here : https://github.com/Arief-AK/sarax/blob/main/Docs/Sarax%20with%20Docker.md ") + print(f"\nFollow the updated instructions here : {DOCKER_INSTRUCTIONS_URL}") elif choice == 4: done = True else: