From 677498652d9c43fd7ee4dcc1b8f82c964b218867 Mon Sep 17 00:00:00 2001 From: Santosh Date: Sat, 8 Jun 2024 11:38:26 +0530 Subject: [PATCH] Fix lint errors Signed-off-by: Santosh --- cmd/artifact_pull.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/artifact_pull.go b/cmd/artifact_pull.go index 6e71dadc..c50e8091 100644 --- a/cmd/artifact_pull.go +++ b/cmd/artifact_pull.go @@ -70,7 +70,7 @@ func init() { pullCmd.Flags().StringVarP(&pullArgs.dest, "dest", "d", "", "destination URL for pulling the artifact from") pullCmd.Flags().BoolVarP(&pullArgs.verify, "verify", "v", false, "Set signature verification of the artifact using Sigstore cosign") pullCmd.Flags().StringVarP(&pullArgs.cosignKey, "pub-key", "k", "", "Cosign public key for varifying the artifact") - pushCmd.Flags().StringVarP(&pushArgs.creds, "credentials", "c", "", "Credentials to authenticate with OCI registries ") + pullCmd.Flags().StringVarP(&pullArgs.creds, "credentials", "c", "", "Credentials to authenticate with OCI registries ") artifactCmd.AddCommand(pullCmd) }