Skip to content

Commit

Permalink
Update import paths (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
etrexel authored Oct 11, 2021
1 parent f931af6 commit ce33a4c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ build-cli:


build-plugins:
go build -o ./bin/plugins/ ./plugins/referrerstore/ociregistry
go build -o ./bin/plugins/ ./plugins/verifier/nv2verifier
go build -o ./bin/plugins/ ./plugins/verifier/sbom

install:
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ go build -o ~/bin ./cmd/hora
- Build the ```hora``` plugins and install them in the home directory

```
go build -o ~/.hora/plugins ./plugins/referrerstore/ociregistry
go build -o ~/.hora/plugins ./plugins/verifier/nv2verifier
go build -o ~/.hora/plugins ./plugins/verifier/sbom
```

Expand Down
2 changes: 1 addition & 1 deletion pkg/referrerstore/oras/cosign.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package oras
import (
"github.com/deislabs/hora/pkg/common"
"github.com/deislabs/hora/pkg/ocispecs"
"github.com/deislabs/hora/plugins/referrerstore/ociregistry/registry"
"github.com/deislabs/hora/pkg/referrerstore/oras/registry"
"github.com/google/go-containerregistry/pkg/name"
v1 "github.com/google/go-containerregistry/pkg/v1"
oci "github.com/opencontainers/image-spec/specs-go/v1"
Expand Down
2 changes: 1 addition & 1 deletion pkg/referrerstore/oras/oras.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/deislabs/hora/pkg/referrerstore"
"github.com/deislabs/hora/pkg/referrerstore/config"
"github.com/deislabs/hora/pkg/referrerstore/factory"
"github.com/deislabs/hora/plugins/referrerstore/ociregistry/registry"
"github.com/deislabs/hora/pkg/referrerstore/oras/registry"
"github.com/opencontainers/go-digest"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/verifier/notaryv2/notaryv2.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"github.com/deislabs/hora/pkg/verifier"
"github.com/deislabs/hora/pkg/verifier/config"
"github.com/deislabs/hora/pkg/verifier/factory"
l "github.com/deislabs/hora/plugins/verifier/nv2verifier/local"
l "github.com/deislabs/hora/pkg/verifier/notaryv2/local"
"github.com/docker/libtrust"
"github.com/notaryproject/notary/v2"

Expand Down

0 comments on commit ce33a4c

Please sign in to comment.