Skip to content

Commit

Permalink
Fix linter errors
Browse files Browse the repository at this point in the history
This commit fixes the linter errors introduced in merged PRs
  • Loading branch information
maraino committed May 14, 2024
1 parent 9fef15b commit af6511a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions command/certificate/verify.go
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ func verifyAction(ctx *cli.Context) error {
}

crlVerified := false
crlOut:
crlOut:
for _, endpoint := range endpoints {
respReceived, err := VerifyCRLEndpoint(endpoint, cert, issuer, httpClient, insecure)
switch {
Expand Down Expand Up @@ -349,7 +349,7 @@ func verifyAction(ctx *cli.Context) error {
}

ocspVerified := false
ocspOut:
ocspOut:
for _, endpoint := range endpoints {
respReceived, err := VerifyOCSPEndpoint(endpoint, cert, issuer, httpClient)
switch {
Expand Down
2 changes: 1 addition & 1 deletion command/crl/inspect.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ import (

"github.com/pkg/errors"
"github.com/smallstep/cli/flags"
"github.com/smallstep/cli/utils"
"github.com/smallstep/cli/internal/crlutil"
"github.com/smallstep/cli/utils"
"github.com/urfave/cli"
"go.step.sm/cli-utils/command"
"go.step.sm/cli-utils/errs"
Expand Down

0 comments on commit af6511a

Please sign in to comment.