Skip to content

Commit 1c30ee6

Browse files
Rename repository
1 parent 5bcb16e commit 1c30ee6

34 files changed

+102
-102
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Tape has the following commands:
8888
First, clone the repo and build `tape` binary:
8989

9090
```console
91-
git clone -q [email protected]:docker/labs-brown-tape.git ; cd ./labs-brown-tape
91+
git clone -q [email protected]:errordeveloper/tape.git ; cd ./labs-brown-tape
9292
(cd ./tape ; go build)
9393
```
9494

attest/attest.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ package attest
33
import (
44
"fmt"
55

6-
"github.com/docker/labs-brown-tape/attest/digest"
7-
"github.com/docker/labs-brown-tape/attest/types"
8-
"github.com/docker/labs-brown-tape/attest/vcs/git"
6+
"github.com/errordeveloper/tape/attest/digest"
7+
"github.com/errordeveloper/tape/attest/types"
8+
"github.com/errordeveloper/tape/attest/vcs/git"
99
)
1010

1111
var (

attest/manifest/images.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package manifest
33
import (
44
"cmp"
55

6-
attestTypes "github.com/docker/labs-brown-tape/attest/types"
7-
manifestTypes "github.com/docker/labs-brown-tape/manifest/types"
6+
attestTypes "github.com/errordeveloper/tape/attest/types"
7+
manifestTypes "github.com/errordeveloper/tape/manifest/types"
88
)
99

1010
const (

attest/manifest/manifest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package manifest
33
import (
44
"cmp"
55

6-
"github.com/docker/labs-brown-tape/attest/types"
6+
"github.com/errordeveloper/tape/attest/types"
77
)
88

99
const (

attest/registry.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"path/filepath"
99
"slices"
1010

11-
"github.com/docker/labs-brown-tape/attest/digest"
12-
"github.com/docker/labs-brown-tape/attest/manifest"
13-
"github.com/docker/labs-brown-tape/attest/types"
11+
"github.com/errordeveloper/tape/attest/digest"
12+
"github.com/errordeveloper/tape/attest/manifest"
13+
"github.com/errordeveloper/tape/attest/types"
1414
"github.com/fxamacker/cbor/v2"
1515
)
1616

attest/registry_test.go

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ import (
1111
"github.com/google/go-containerregistry/pkg/crane"
1212
. "github.com/onsi/gomega"
1313

14-
. "github.com/docker/labs-brown-tape/attest"
15-
"github.com/docker/labs-brown-tape/attest/manifest"
16-
"github.com/docker/labs-brown-tape/manifest/imageresolver"
17-
"github.com/docker/labs-brown-tape/manifest/imagescanner"
18-
"github.com/docker/labs-brown-tape/manifest/loader"
19-
"github.com/docker/labs-brown-tape/manifest/testdata"
20-
"github.com/docker/labs-brown-tape/oci"
21-
// "github.com/docker/labs-brown-tape/trex"
14+
. "github.com/errordeveloper/tape/attest"
15+
"github.com/errordeveloper/tape/attest/manifest"
16+
"github.com/errordeveloper/tape/manifest/imageresolver"
17+
"github.com/errordeveloper/tape/manifest/imagescanner"
18+
"github.com/errordeveloper/tape/manifest/loader"
19+
"github.com/errordeveloper/tape/manifest/testdata"
20+
"github.com/errordeveloper/tape/oci"
21+
// "github.com/errordeveloper/tape/trex"
2222
)
2323

2424
var (

attest/types/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111

1212
toto "github.com/in-toto/in-toto-golang/in_toto"
1313

14-
"github.com/docker/labs-brown-tape/attest/digest"
14+
"github.com/errordeveloper/tape/attest/digest"
1515
)
1616

1717
type (

attest/vcs/git/git.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import (
1313
"github.com/go-git/go-git/v5/plumbing/transport"
1414
"github.com/go-git/go-git/v5/utils/ioutil"
1515

16-
"github.com/docker/labs-brown-tape/attest/digest"
17-
"github.com/docker/labs-brown-tape/attest/types"
16+
"github.com/errordeveloper/tape/attest/digest"
17+
"github.com/errordeveloper/tape/attest/types"
1818
)
1919

2020
const (

attest/vcs/git/git_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
. "github.com/onsi/gomega"
99
"github.com/onsi/gomega/types"
1010

11-
. "github.com/docker/labs-brown-tape/attest/vcs/git"
11+
. "github.com/errordeveloper/tape/attest/vcs/git"
1212
)
1313

1414
type gitTestCases struct {

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ kind: ImagineBuildConfig
22
apiVersion: v1alpha1
33

44
spec:
5-
name: labs-brown-tape
5+
name: tape
66
dir: ./

0 commit comments

Comments
 (0)