Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/sst/secret.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,13 @@ var CmdSecretList = &cli.Command{
if len(fallback) > 0 {
color.White("# fallback")
for key, value := range fallback {
fmt.Println(key + "=" + value)
fmt.Println(ui.TEXT_HIGHLIGHT.Render(key) + "=" + ui.TEXT_DIM.Render(value))
}
}
if len(secrets) > 0 {
color.White("# %s/%s", p.App().Name, p.App().Stage)
for key, value := range secrets {
fmt.Println(key + "=" + value)
fmt.Println(ui.TEXT_HIGHLIGHT.Render(key) + "=" + ui.TEXT_DIM.Render(value))
}
}
return nil
Expand Down