Skip to content

Commit

Permalink
Merge pull request #141 from egze/add_label_to_output
Browse files Browse the repository at this point in the history
  • Loading branch information
hazcod authored Nov 3, 2024
2 parents 29ed554 + 65bc378 commit c3543c4
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 c3543c4

Please sign in to comment.