Skip to content

Commit

Permalink
bib: add final newline after bib manifest
Browse files Browse the repository at this point in the history
This is a trivial commit that adds a final newline to
`bootc-image-builder manifest`.
  • Loading branch information
mvo5 authored and achilleas-k committed Oct 8, 2024
1 parent a36a254 commit f55d1ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bib/cmd/bootc-image-builder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ func cmdManifest(cmd *cobra.Command, args []string) error {
if err != nil {
return fmt.Errorf("cannot generate manifest: %w", err)
}
fmt.Print(string(mf))
fmt.Println(string(mf))
return nil
}

Expand Down

0 comments on commit f55d1ec

Please sign in to comment.