Skip to content

Commit af6511a

Browse files
committed
Fix linter errors
This commit fixes the linter errors introduced in merged PRs
1 parent 9fef15b commit af6511a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

command/certificate/verify.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ func verifyAction(ctx *cli.Context) error {
316316
}
317317

318318
crlVerified := false
319-
crlOut:
319+
crlOut:
320320
for _, endpoint := range endpoints {
321321
respReceived, err := VerifyCRLEndpoint(endpoint, cert, issuer, httpClient, insecure)
322322
switch {
@@ -349,7 +349,7 @@ func verifyAction(ctx *cli.Context) error {
349349
}
350350

351351
ocspVerified := false
352-
ocspOut:
352+
ocspOut:
353353
for _, endpoint := range endpoints {
354354
respReceived, err := VerifyOCSPEndpoint(endpoint, cert, issuer, httpClient)
355355
switch {

command/crl/inspect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ import (
1515

1616
"github.com/pkg/errors"
1717
"github.com/smallstep/cli/flags"
18-
"github.com/smallstep/cli/utils"
1918
"github.com/smallstep/cli/internal/crlutil"
19+
"github.com/smallstep/cli/utils"
2020
"github.com/urfave/cli"
2121
"go.step.sm/cli-utils/command"
2222
"go.step.sm/cli-utils/errs"

0 commit comments

Comments
 (0)