Skip to content

Commit cc77e45

Browse files
committed
fix unused-parameter check error
1 parent d82393a commit cc77e45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/acr-credential-provider/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ func main() {
5353
return nil
5454
},
5555
Version: version.Get().GitVersion,
56-
RunE: func(cmd *cobra.Command, args []string) error {
56+
RunE: func(_ *cobra.Command, args []string) error {
5757
if err := NewCredentialProvider(args[0], RegistryMirrorStr).Run(context.TODO()); err != nil {
5858
klog.Errorf("Error running acr credential provider: %v", err)
5959
return err

0 commit comments

Comments
 (0)