sbctl/verify: remove accidental newline

Was leading to double newlines in the "sbctl verify" output.

Signed-off-by: Érico Nogueira <erico.erc@gmail.com>
This commit is contained in:
Érico Nogueira 2021-06-17 00:28:45 -03:00
parent 2b6b3f92a1
commit 9e0ea82854
1 changed files with 2 additions and 2 deletions

View File

@ -68,9 +68,9 @@ var verifyCmd = &cobra.Command{
return err
}
if ok {
logging.Ok("%s is signed\n", path)
logging.Ok("%s is signed", path)
} else {
logging.NotOk("%s is not signed\n", path)
logging.NotOk("%s is not signed", path)
}
return nil
}); err != nil {