unexport top level subcommand funcs

Signed-off-by: Meredith Lancaster <malancas@github.com>
This commit is contained in:
Meredith Lancaster 2024-03-12 18:05:02 -06:00
parent 9ad3b220a3
commit 4ae0470dcd
6 changed files with 40 additions and 40 deletions

View file

@ -88,7 +88,7 @@ func NewVerifyCmd(f *cmdutil.Factory) *cobra.Command {
return nil
},
// Use Run instead of RunE because if an error is returned by RunVerify
// Use Run instead of RunE because if an error is returned by runVerify
// when RunE is used, the command usage will be printed
// We only want to print the error, not usage
RunE: func(cmd *cobra.Command, args []string) error {
@ -103,7 +103,7 @@ func NewVerifyCmd(f *cmdutil.Factory) *cobra.Command {
if err := auth.IsHostSupported(); err != nil {
return err
}
if err := RunVerify(opts); err != nil {
if err := runVerify(opts); err != nil {
return fmt.Errorf("Failed to verify the artifact: %w", err)
}
return nil
@ -134,7 +134,7 @@ func NewVerifyCmd(f *cmdutil.Factory) *cobra.Command {
return verifyCmd
}
func RunVerify(opts *Options) error {
func runVerify(opts *Options) error {
artifact, err := artifact.NewDigestedArtifact(opts.OCIClient, opts.ArtifactPath, opts.DigestAlgorithm)
if err != nil {
return fmt.Errorf("failed to digest artifact: %s", err)