From 5dd956c90287a7069b60691c76d92e0675386c83 Mon Sep 17 00:00:00 2001 From: pauhull <22707808+pauhull@users.noreply.github.com> Date: Thu, 11 Jan 2024 16:25:26 +0100 Subject: [PATCH] fix --- internal/state/config/config.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/internal/state/config/config.go b/internal/state/config/config.go index fe557fd0..9677d0ef 100644 --- a/internal/state/config/config.go +++ b/internal/state/config/config.go @@ -141,8 +141,9 @@ func (cfg *config) marshal() ([]byte, error) { } for _, context := range cfg.contexts { raw.Contexts = append(raw.Contexts, rawConfigContext{ - Name: context.Name, - Token: context.Token, + Name: context.Name, + Token: context.Token, + SSHKeys: context.SSHKeys, }) } return toml.Marshal(raw)