manifest/pipelines: rename getPackages()

Name it `getPackageSpecs()` instead so we can introduce a new
function `getPackages()` that is about package names rather than
full specs, in a follow-up commit.
This commit is contained in:
Tom Gundersen 2022-06-28 18:41:33 +01:00
parent 6940853215
commit ef952c90a8
6 changed files with 7 additions and 7 deletions

View file

@ -44,7 +44,7 @@ func NewOSTreeCommitServerTreePipeline(buildPipeline *BuildPipeline,
}
}
func (p OSTreeCommitServerTreePipeline) getPackages() []rpmmd.PackageSpec {
func (p OSTreeCommitServerTreePipeline) getPackageSpecs() []rpmmd.PackageSpec {
return p.packageSpecs
}