Skip to content

Commit

Permalink
Fix the default config_dir value
Browse files Browse the repository at this point in the history
  • Loading branch information
tonysm committed Jun 16, 2023
1 parent 4721686 commit a92dac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Services/Traefik.php
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}

Expand Down

0 comments on commit a92dac9

Please sign in to comment.