Skip to content

Commit

Permalink
fix build_artifact.go typo
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Clarke <[email protected]>
  • Loading branch information
mclarke47 authored Nov 14, 2023
1 parent 0fcda45 commit e184ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/flux/build_artifact.go
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ func buildArtifactCmdRun(cmd *cobra.Command, args []string) error {

ociClient := oci.NewClient(oci.DefaultOptions())
if err := ociClient.Build(buildArtifactArgs.output, path, buildArtifactArgs.ignorePaths); err != nil {
return fmt.Errorf("bulding artifact failed, error: %w", err)
return fmt.Errorf("building artifact failed, error: %w", err)
}

logger.Successf("artifact created at %s", buildArtifactArgs.output)
Expand Down

0 comments on commit e184ef2

Please sign in to comment.