Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
phm07 committed Jan 11, 2024
1 parent d87cdc1 commit 5dd956c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions internal/state/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5dd956c

Please sign in to comment.