From d0ef7f16006ba755e279feeeaecfc059e69b7906 Mon Sep 17 00:00:00 2001 From: John Date: Sun, 21 Sep 2025 03:55:32 +0100 Subject: [PATCH] added single quotes to enable command --- gui/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/__main__.py b/gui/__main__.py index 686d243..3f6ad9a 100755 --- a/gui/__main__.py +++ b/gui/__main__.py @@ -5197,7 +5197,7 @@ class Settings(Page): if profile and isinstance(profile, SystemProfile): app_path = os.environ.get('APPIMAGE') or "/path/to/hydra-veil" - self.cli_command.setText(f"{app_path} --cli profile enable -i {profile_id}") + self.cli_command.setText(f"'{app_path}' --cli profile enable -i {profile_id}") self.cli_copy_button.setEnabled(True) self.cli_execute_button.setEnabled(True) ip_address = self.extract_endpoint_ip(profile)