From 82c94cb6bba1ae8ed3ec31f34997afcfd0d500ef Mon Sep 17 00:00:00 2001 From: AtomicFS Date: Wed, 11 Dec 2024 14:14:05 +0100 Subject: [PATCH] chore(action): cosmetic fixes Signed-off-by: AtomicFS --- action/recipes/universal.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/action/recipes/universal.go b/action/recipes/universal.go index ade22a61..234d74f2 100644 --- a/action/recipes/universal.go +++ b/action/recipes/universal.go @@ -12,7 +12,7 @@ import ( "github.com/9elements/firmware-action/action/container" ) -// UniversalSpecific is used to store data specific to universal +// UniversalSpecific is used to store data specific to the universal command module // ANCHOR: UniversalSpecific type UniversalSpecific struct { // Specifies build commands to execute inside container @@ -23,7 +23,7 @@ type UniversalSpecific struct { // ANCHOR: UniversalOpts -// UniversalOpts is used to store all data needed to run universal +// UniversalOpts is used to store all data needed to run universal commands type UniversalOpts struct { // List of IDs this instance depends on // Example: [ "MyLittleCoreboot", "MyLittleEdk2"] @@ -48,7 +48,7 @@ func (opts UniversalOpts) GetArtifacts() *[]container.Artifacts { return opts.CommonOpts.GetArtifacts() } -// buildFirmware builds universal +// buildFirmware builds (or rather executes) universal command module func (opts UniversalOpts) buildFirmware(ctx context.Context, client *dagger.Client, dockerfileDirectoryPath string) (*dagger.Container, error) { // Spin up container containerOpts := container.SetupOpts{