Skip to content

Commit ad2dd40

Browse files
committed
EDIT vendored containers/image
s/sirupsen/Sirupsen/g
1 parent c462174 commit ad2dd40

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

vendor/src/github.com/containers/image/docker/docker_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ import (
1212
"strings"
1313
"time"
1414

15+
"github.com/Sirupsen/logrus"
1516
"github.com/containers/image/docker/reference"
1617
"github.com/containers/image/pkg/docker/config"
1718
"github.com/containers/image/pkg/tlsclientconfig"
@@ -20,7 +21,6 @@ import (
2021
"github.com/docker/go-connections/tlsconfig"
2122
"github.com/opencontainers/go-digest"
2223
"github.com/pkg/errors"
23-
"github.com/sirupsen/logrus"
2424
)
2525

2626
const (

vendor/src/github.com/containers/image/docker/docker_image_dest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"os"
1414
"path/filepath"
1515

16+
"github.com/Sirupsen/logrus"
1617
"github.com/containers/image/docker/reference"
1718
"github.com/containers/image/manifest"
1819
"github.com/containers/image/types"
@@ -22,7 +23,6 @@ import (
2223
"github.com/opencontainers/go-digest"
2324
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
2425
"github.com/pkg/errors"
25-
"github.com/sirupsen/logrus"
2626
)
2727

2828
type dockerImageDestination struct {

vendor/src/github.com/containers/image/docker/docker_image_src.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ import (
1111
"os"
1212
"strconv"
1313

14+
"github.com/Sirupsen/logrus"
1415
"github.com/containers/image/docker/reference"
1516
"github.com/containers/image/manifest"
1617
"github.com/containers/image/types"
1718
"github.com/docker/distribution/registry/client"
1819
"github.com/opencontainers/go-digest"
1920
"github.com/pkg/errors"
20-
"github.com/sirupsen/logrus"
2121
)
2222

2323
type dockerImageSource struct {

vendor/src/github.com/containers/image/docker/lookaside.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ import (
99
"path/filepath"
1010
"strings"
1111

12+
"github.com/Sirupsen/logrus"
1213
"github.com/containers/image/docker/reference"
1314
"github.com/containers/image/types"
1415
"github.com/ghodss/yaml"
1516
"github.com/opencontainers/go-digest"
1617
"github.com/pkg/errors"
17-
"github.com/sirupsen/logrus"
1818
)
1919

2020
// systemRegistriesDirPath is the path to registries.d, used for locating lookaside Docker signature storage.

vendor/src/github.com/containers/image/image/docker_schema2.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ import (
88
"io/ioutil"
99
"strings"
1010

11+
"github.com/Sirupsen/logrus"
1112
"github.com/containers/image/docker/reference"
1213
"github.com/containers/image/manifest"
1314
"github.com/containers/image/types"
1415
"github.com/opencontainers/go-digest"
1516
imgspecv1 "github.com/opencontainers/image-spec/specs-go/v1"
1617
"github.com/pkg/errors"
17-
"github.com/sirupsen/logrus"
1818
)
1919

2020
// gzippedEmptyLayer is a gzip-compressed version of an empty tar file (1024 NULL bytes)

vendor/src/github.com/containers/image/pkg/tlsclientconfig/tlsclientconfig.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"strings"
1111
"time"
1212

13+
"github.com/Sirupsen/logrus"
1314
"github.com/docker/go-connections/sockets"
1415
"github.com/docker/go-connections/tlsconfig"
1516
"github.com/pkg/errors"
16-
"github.com/sirupsen/logrus"
1717
)
1818

1919
// SetupCertificates opens all .crt, .cert, and .key files in dir and appends / loads certs and key pairs as appropriate to tlsc

vendor/src/github.com/containers/image/signature/policy_eval.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ package signature
88
import (
99
"context"
1010

11+
"github.com/Sirupsen/logrus"
1112
"github.com/containers/image/types"
1213
"github.com/pkg/errors"
13-
"github.com/sirupsen/logrus"
1414
)
1515

1616
// PolicyRequirementError is an explanatory text for rejecting a signature or an image.

vendor/src/github.com/containers/image/signature/policy_eval_baselayer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package signature
44

55
import (
6+
"github.com/Sirupsen/logrus"
67
"github.com/containers/image/types"
7-
"github.com/sirupsen/logrus"
88
)
99

1010
func (pr *prSignedBaseLayer) isSignatureAuthorAccepted(image types.UnparsedImage, sig []byte) (signatureAcceptanceResult, *Signature, error) {

0 commit comments

Comments
 (0)