Skip to content

Commit

Permalink
fixup! update to latest imagefilter-fmt branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mvo5 committed Nov 12, 2024
1 parent caf0c91 commit a53e1ef
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cmd/image-builder/list_images.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ package main

import (
"io"

"github.com/osbuild/images/pkg/imagefilter"
)

func listImages(out io.Writer, format string, filterExprs []string) error {
Expand All @@ -15,7 +17,7 @@ func listImages(out io.Writer, format string, filterExprs []string) error {
return err
}

fmter, err := NewFilteredResultFormatter(format)
fmter, err := imagefilter.NewResultsFormatter(imagefilter.OutputFormat(format))
if err != nil {
return err
}
Expand Down

0 comments on commit a53e1ef

Please sign in to comment.