From df9fdd14fb3242a859f0cfeeb1efb59497bf212f Mon Sep 17 00:00:00 2001 From: ShiroTohu <44159210+ShiroTohu@users.noreply.github.com> Date: Thu, 22 Jan 2026 07:22:40 +1000 Subject: [PATCH] fix: typo in local.go (#613) --- internal/adapters/wgcontroller/local.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/adapters/wgcontroller/local.go b/internal/adapters/wgcontroller/local.go index d91a5f6..141917f 100644 --- a/internal/adapters/wgcontroller/local.go +++ b/internal/adapters/wgcontroller/local.go @@ -626,7 +626,7 @@ func (c LocalController) exec(command string, interfaceId domain.InterfaceIdenti if err != nil { slog.Warn("failed to executed shell command", "command", commandWithInterfaceName, "stdin", stdin, "output", string(out), "error", err) - return fmt.Errorf("failed to exexute shell command %s: %w", commandWithInterfaceName, err) + return fmt.Errorf("failed to execute shell command %s: %w", commandWithInterfaceName, err) } slog.Debug("executed shell command", "command", commandWithInterfaceName,