From dde69dde61e57fa929596294f6b4e8f798f5598e Mon Sep 17 00:00:00 2001 From: Ophestra Date: Thu, 2 Jul 2026 22:59:40 +0900 Subject: internal/pkg: rename inputs method Inputs is more correct than dependencies in the current terminology. Signed-off-by: Ophestra --- internal/rosa/busybox.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/rosa/busybox.go') diff --git a/internal/rosa/busybox.go b/internal/rosa/busybox.go index 923f25ef..ae900a04 100644 --- a/internal/rosa/busybox.go +++ b/internal/rosa/busybox.go @@ -26,8 +26,8 @@ func (a busyboxBin) Params(*pkg.IContext) {} // IsExclusive returns false: Cure performs a trivial filesystem write. func (busyboxBin) IsExclusive() bool { return false } -// Dependencies returns the underlying busybox [pkg.FileArtifact]. -func (a busyboxBin) Dependencies() []pkg.Artifact { +// Inputs returns the underlying busybox [pkg.FileArtifact]. +func (a busyboxBin) Inputs() []pkg.Artifact { return []pkg.Artifact{a.bin} } -- cgit v1.3.1