distro/rhel85: fix input name for copy tree inputs

The name parameter always existed but was not actually used.
This commit is contained in:
Achilleas Koutsou 2021-08-20 13:19:06 +02:00 committed by Tom Gundersen
parent 242e1d69ee
commit 8970cdfd83

View file

@ -51,7 +51,7 @@ func xorrisofsStageInputs(pipeline string) *osbuild.XorrisofsStageInputs {
}
func copyPipelineTreeInputs(name, inputPipeline string) *osbuild.CopyStageInputs {
inputName := "root-tree"
inputName := name
treeInput := osbuild.CopyStageInput{}
treeInput.Type = "org.osbuild.tree"
treeInput.Origin = "org.osbuild.pipeline"