Skip to content

Commit

Permalink
remove duplicate import
Browse files Browse the repository at this point in the history
  • Loading branch information
tmonty12 committed Oct 17, 2024
1 parent 9105706 commit 1dc9057
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/store/cloudflared.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (

"github.com/brevdev/brev-cli/pkg/collections"
"github.com/brevdev/brev-cli/pkg/errors"
breverrors "github.com/brevdev/brev-cli/pkg/errors"
)

type CloudflaredStore interface {
Expand Down Expand Up @@ -76,7 +75,7 @@ func (c Cloudflared) DownloadBinary(ctx context.Context, binaryPath, binaryURL s

err = c.store.MkdirAll(filepath.Dir(binaryPath), 0o755)
if err != nil {
return breverrors.WrapAndTrace(err)
return errors.WrapAndTrace(err)
}

out, err := c.store.Create(binaryPath)
Expand Down

0 comments on commit 1dc9057

Please sign in to comment.