Skip to content

Commit

Permalink
add label to output
Browse files Browse the repository at this point in the history
  • Loading branch information
egze committed Nov 3, 2024
1 parent 29ed554 commit 65bc378
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cmd/enpasscli/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,12 @@ func listEntries(logger *logrus.Logger, vault *enpass.Vault, args *Args) {
logger.Printf(
"> title: %s"+
" login: %s"+
" cat.: %s",
" cat.: %s"+
" label: %s",
card.Title,
card.Subtitle,
card.Category,
card.Label,
)
}
}
Expand All @@ -160,10 +162,12 @@ func showEntries(logger *logrus.Logger, vault *enpass.Vault, args *Args) {
"> title: %s"+
" login: %s"+
" cat.: %s"+
" label: %s"+
" %s: %s",
card.Title,
card.Subtitle,
card.Category,
card.Label,
card.Type,
decrypted,
)
Expand Down

0 comments on commit 65bc378

Please sign in to comment.