From a92dac91ef2437b1919728eab27d0e37b701d78b Mon Sep 17 00:00:00 2001 From: Tony Messias Date: Fri, 16 Jun 2023 16:01:51 -0300 Subject: [PATCH] Fix the default config_dir value --- app/Services/Traefik.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Services/Traefik.php b/app/Services/Traefik.php index 682a3626..f2009cef 100644 --- a/app/Services/Traefik.php +++ b/app/Services/Traefik.php @@ -56,7 +56,7 @@ public function __construct(Shell $shell, Environment $environment, Docker $dock }, $this->defaultPrompts); $this->prompts = array_map(function ($prompt) use ($home) { - if ($prompt['shortname'] === 'config' && ! empty($home)) { + if ($prompt['shortname'] === 'config_dir' && ! empty($home)) { $prompt['default'] = "{$home}/.config/traefik"; }