Skip to content

Commit

Permalink
cli: fix missing newline when performing multi party recovery (#789)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Weiße <[email protected]>
  • Loading branch information
daniel-weisse authored Jan 15, 2025
1 parent 183281e commit a321108
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/internal/cmd/recover.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ func runRecover(cmd *cobra.Command, args []string) error {
if remaining == 0 {
cmd.Println("Recovery successful.")
} else {
cmd.Printf("Secret was processed successfully. Upload the next secret. Remaining secrets: %d", remaining)
cmd.Printf("Secret was processed successfully. Upload the next secret. Remaining secrets: %d\n", remaining)
}

if err := saveSgxQuote(fs, sgxQuote, sgxQuotePath); err != nil {
Expand Down

0 comments on commit a321108

Please sign in to comment.