Skip to content

Commit

Permalink
manifest: add paths option
Browse files Browse the repository at this point in the history
  • Loading branch information
croissanne authored and achilleas-k committed Feb 8, 2024
1 parent 0440fba commit 58e2a3b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/manifest/tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ type Tar struct {

Format osbuild.TarArchiveFormat
RootNode osbuild.TarRootNode
Paths []string
ACLs *bool
SELinux *bool
Xattrs *bool
Expand Down Expand Up @@ -50,6 +51,7 @@ func (p *Tar) serialize() osbuild.Pipeline {
SELinux: p.SELinux,
Xattrs: p.Xattrs,
RootNode: p.RootNode,
Paths: p.Paths,
}
tarStage := osbuild.NewTarStage(tarOptions, p.inputPipeline.Name())
pipeline.AddStage(tarStage)
Expand Down

0 comments on commit 58e2a3b

Please sign in to comment.