Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit b823a7a

Browse files
committed
org rename
1 parent d5c78eb commit b823a7a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+82
-82
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sudo: required
77
services:
88
- docker
99

10-
go_import_path: github.com/GoogleCloudPlatform/container-diff
10+
go_import_path: github.com/GoogleContainerTools/container-diff
1111

1212
addons:
1313
apt:

BUILD

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ load("@bazel_gazelle//:def.bzl", "gazelle")
44
gazelle(
55
name = "gazelle",
66
external = "vendored",
7-
prefix = "github.com/GoogleCloudPlatform/container-diff",
7+
prefix = "github.com/GoogleContainerTools/container-diff",
88
)
99

10-
go_prefix("github.com/GoogleCloudPlatform/container-diff")
10+
go_prefix("github.com/GoogleContainerTools/container-diff")
1111

1212
go_library(
1313
name = "go_default_library",
1414
srcs = ["main.go"],
15-
importpath = "github.com/GoogleCloudPlatform/container-diff",
15+
importpath = "github.com/GoogleContainerTools/container-diff",
1616
visibility = ["//visibility:private"],
1717
deps = [
1818
"//cmd:go_default_library",
@@ -23,6 +23,6 @@ go_library(
2323
go_binary(
2424
name = "container-diff",
2525
embed = [":go_default_library"],
26-
importpath = "github.com/GoogleCloudPlatform/container-diff",
26+
importpath = "github.com/GoogleContainerTools/container-diff",
2727
visibility = ["//visibility:public"],
2828
)

CONTRIBUTING.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ with your personal GitHub account. Then, clone the fork into your `$GOPATH`:
1313

1414
```bash
1515
git clone [email protected]:<your_account>/container-diff.git
16-
$GOPATH/src/github.com/GoogleCloudPlatform &&
17-
cd $GOPATH/src/github.com/GoogleCloudPlatform/container-diff &&
18-
git remote add upstream [email protected]:GoogleCloudPlatform/container-diff.git
16+
$GOPATH/src/github.com/GoogleContainerTools &&
17+
cd $GOPATH/src/github.com/GoogleContainerTools/container-diff &&
18+
git remote add upstream [email protected]:GoogleContainerTools/container-diff.git
1919
```
2020

2121
The last command here sets the official repository as an upstream repository for

Dockerfile.build

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Dockerfile used to build a build step that builds container-diff in CI.
22
FROM golang:1.9
33
RUN apt-get update && apt-get install make
4-
RUN mkdir -p /go/src/github.com/GoogleCloudPlatform/
5-
RUN ln -s /workspace /go/src/github.com/GoogleCloudPlatform/container-diff
6-
WORKDIR /go/src/github.com/GoogleCloudPlatform/container-diff
4+
RUN mkdir -p /go/src/github.com/GoogleContainerTools/
5+
RUN ln -s /workspace /go/src/github.com/GoogleContainerTools/container-diff
6+
WORKDIR /go/src/github.com/GoogleContainerTools/container-diff

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2222
GOOS ?= $(shell go env GOOS)
2323
GOARCH = amd64
2424
BUILD_DIR ?= ./out
25-
ORG := github.com/GoogleCloudPlatform
25+
ORG := github.com/GoogleContainerTools
2626
PROJECT := container-diff
2727
REPOPATH ?= $(ORG)/$(PROJECT)
2828
RELEASE_BUCKET ?= $(PROJECT)

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# container-diff
22

33
[![Build
4-
Status](https://travis-ci.org/GoogleCloudPlatform/container-diff.svg?branch=master)](https://travis-ci.org/GoogleCloudPlatform/container-diff)
4+
Status](https://travis-ci.org/GoogleContainerTools/container-diff.svg?branch=master)](https://travis-ci.org/GoogleContainerTools/container-diff)
55

66
## What is container-diff?
77

@@ -245,7 +245,7 @@ type MultiVersionInfo struct {
245245
```
246246

247247
## User Customized Output
248-
Users can customize the format of the output of diffs with the`--format` flag. The flag takes a Go template string, which specifies the format the diff should be output in. This template string uses the structs described above, depending on the differ used, to format output. The default template strings container-diff uses can be found [here](https://github.com/GoogleCloudPlatform/container-diff/blob/master/util/template_utils.go).
248+
Users can customize the format of the output of diffs with the`--format` flag. The flag takes a Go template string, which specifies the format the diff should be output in. This template string uses the structs described above, depending on the differ used, to format output. The default template strings container-diff uses can be found [here](https://github.com/GoogleContainerTools/container-diff/blob/master/util/template_utils.go).
249249

250250
An example using the pip package analyzer is shown below, in which only package names are printed (some are repeated because of version differences).
251251

@@ -442,9 +442,9 @@ In order to quickly make your own analyzer, follow these steps:
442442
1. Determine if you can use existing analyzing or diffing tools. If you can make use of existing tools, you then need to construct the structs to feed into the tools by getting all of the packages for each image or the analogous quality to be analyzed. To determine if you can leverage existing tools, think through these questions:
443443
- Are you trying to analyze packages?
444444
- Yes: Does the relevant package manager support different versions of the same package on one image?
445-
- Yes: Implement `getPackages` to collect all versions of all packages within an image in a `map[string]map[string]util.PackageInfo`. Use [`GetMultiVersionMapDiff`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/package_diff_utils.go#L119-L126) to diff map objects. See [`differs/node_diff.go`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/node_diff.go#L49-L93) or [`differs/pip_diff.go`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/pip_diff.go#L48-L111) for examples.
446-
- No: Implement `getPackages` to collect all versions of all packages within an image in a `map[string]util.PackageInfo`. Use [`GetMapDiff`](https://github.com/GoogleCloudPlatform/container-diff/blob/31cec2304b54ae6ae444ccde4382b113d8e06097/util/package_diff_utils.go#L110-L117) to diff map objects. See [`differs/apt_diff.go`](https://github.com/GoogleCloudPlatform/container-diff/blob/master/differs/apt_diff.go#L29).
447-
- No: Look to [History](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/history_diff.go) and [File System](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/file_diff.go) differs as models for diffing.
445+
- Yes: Implement `getPackages` to collect all versions of all packages within an image in a `map[string]map[string]util.PackageInfo`. Use [`GetMultiVersionMapDiff`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/package_diff_utils.go#L119-L126) to diff map objects. See [`differs/node_diff.go`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/node_diff.go#L49-L93) or [`differs/pip_diff.go`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/pip_diff.go#L48-L111) for examples.
446+
- No: Implement `getPackages` to collect all versions of all packages within an image in a `map[string]util.PackageInfo`. Use [`GetMapDiff`](https://github.com/GoogleContainerTools/container-diff/blob/31cec2304b54ae6ae444ccde4382b113d8e06097/util/package_diff_utils.go#L110-L117) to diff map objects. See [`differs/apt_diff.go`](https://github.com/GoogleContainerTools/container-diff/blob/master/differs/apt_diff.go#L29).
447+
- No: Look to [History](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/history_diff.go) and [File System](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/file_diff.go) differs as models for diffing.
448448

449449
2. Write your analyzer driver in the `differs` directory, such that you have a struct for your analyzer type and two methods for that analyzer: `Analyze` for single image analysis and `Diff` for comparison between two images:
450450

@@ -458,7 +458,7 @@ The image arguments passed to your analyzer contain the path to the unpacked tar
458458

459459
If using existing package tools, you should create the appropriate structs (e.g. `SingleVersionPackageAnalyzeResult` or `SingleVersionPackageDiffResult`) to analyze or diff. Otherwise, create your own structs which should yield information to fill an AnalyzeResult or DiffResult as the return type for Analyze() and Diff(), respectively, and should implement the `Result` interface, as in the next step.
460460

461-
3. Create a struct following the [`Result`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/analyze_output_utils.go#L27-L30) interface by implementing the following two methods.
461+
3. Create a struct following the [`Result`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/analyze_output_utils.go#L27-L30) interface by implementing the following two methods.
462462

463463
```go
464464
type Result interface {
@@ -467,6 +467,6 @@ type Result interface {
467467
}
468468
```
469469

470-
This is where you define how your analyzer should output for a human readable format (`OutputText`) and as a struct which can then be written to a `.json` file. See [`util/diff_output_utils.go`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/diff_output_utils.go) and [`util/analyze_output_utils.go`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/analyze_output_utils.go).
470+
This is where you define how your analyzer should output for a human readable format (`OutputText`) and as a struct which can then be written to a `.json` file. See [`util/diff_output_utils.go`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/diff_output_utils.go) and [`util/analyze_output_utils.go`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/util/analyze_output_utils.go).
471471

472-
4. Add your analyzer to the `Analyzers` map in [`differs/differs.go`](https://github.com/GoogleCloudPlatform/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/differs.go#L44-L50) with the corresponding Analyzer struct as the value.
472+
4. Add your analyzer to the `Analyzers` map in [`differs/differs.go`](https://github.com/GoogleContainerTools/container-diff/blob/0031c88993c9ac019e2d404815ef50c652d8d010/differs/differs.go#L44-L50) with the corresponding Analyzer struct as the value.

RELEASING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Releasing container-diff
22

3-
The github.com/GoogleCloudPlatform/container-diff uses Container Builder triggers to build and release binaries.
3+
The github.com/GoogleContainerTools/container-diff uses Container Builder triggers to build and release binaries.
44
These triggers are setup via the Cloud Console, but the builds they execute live in this repo.
55

66
## Continuous Builds

cmd/BUILD.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ go_library(
88
"root.go",
99
"version.go",
1010
],
11-
importpath = "github.com/GoogleCloudPlatform/container-diff/cmd",
11+
importpath = "github.com/GoogleContainerTools/container-diff/cmd",
1212
visibility = ["//visibility:public"],
1313
deps = [
1414
"//cmd/util/output:go_default_library",
@@ -34,5 +34,5 @@ go_test(
3434
"root_test.go",
3535
],
3636
embed = [":go_default_library"],
37-
importpath = "github.com/GoogleCloudPlatform/container-diff/cmd",
37+
importpath = "github.com/GoogleContainerTools/container-diff/cmd",
3838
)

cmd/analyze.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ import (
2121
"fmt"
2222
"os"
2323

24-
"github.com/GoogleCloudPlatform/container-diff/cmd/util/output"
25-
"github.com/GoogleCloudPlatform/container-diff/differs"
26-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
24+
"github.com/GoogleContainerTools/container-diff/cmd/util/output"
25+
"github.com/GoogleContainerTools/container-diff/differs"
26+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
2727
"github.com/sirupsen/logrus"
2828
"github.com/spf13/cobra"
2929
)

cmd/diff.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ import (
2222
"os"
2323
"sync"
2424

25-
"github.com/GoogleCloudPlatform/container-diff/cmd/util/output"
26-
"github.com/GoogleCloudPlatform/container-diff/differs"
27-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
28-
"github.com/GoogleCloudPlatform/container-diff/util"
25+
"github.com/GoogleContainerTools/container-diff/cmd/util/output"
26+
"github.com/GoogleContainerTools/container-diff/differs"
27+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
28+
"github.com/GoogleContainerTools/container-diff/util"
2929
"github.com/sirupsen/logrus"
3030
"github.com/spf13/cobra"
3131
)

cmd/root.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ import (
2424
"sort"
2525
"strings"
2626

27-
"github.com/GoogleCloudPlatform/container-diff/differs"
28-
"github.com/GoogleCloudPlatform/container-diff/pkg/cache"
29-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
30-
"github.com/GoogleCloudPlatform/container-diff/util"
27+
"github.com/GoogleContainerTools/container-diff/differs"
28+
"github.com/GoogleContainerTools/container-diff/pkg/cache"
29+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
30+
"github.com/GoogleContainerTools/container-diff/util"
3131
"github.com/containers/image/docker"
3232
"github.com/docker/docker/client"
3333
homedir "github.com/mitchellh/go-homedir"

cmd/util/output/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library")
33
go_library(
44
name = "go_default_library",
55
srcs = ["output.go"],
6-
importpath = "github.com/GoogleCloudPlatform/container-diff/cmd/util/output",
6+
importpath = "github.com/GoogleContainerTools/container-diff/cmd/util/output",
77
visibility = ["//visibility:public"],
88
deps = ["//vendor/github.com/spf13/cobra:go_default_library"],
99
)

cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ package cmd
1919
import (
2020
"fmt"
2121

22-
"github.com/GoogleCloudPlatform/container-diff/version"
22+
"github.com/GoogleContainerTools/container-diff/version"
2323
"github.com/spf13/cobra"
2424
)
2525

differs/BUILD.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ go_library(
1313
"pip_diff.go",
1414
"rpm_diff.go",
1515
],
16-
importpath = "github.com/GoogleCloudPlatform/container-diff/differs",
16+
importpath = "github.com/GoogleContainerTools/container-diff/differs",
1717
visibility = ["//visibility:public"],
1818
deps = [
1919
"//pkg/util:go_default_library",
@@ -35,7 +35,7 @@ go_test(
3535
"rpm_diff_test.go",
3636
],
3737
embed = [":go_default_library"],
38-
importpath = "github.com/GoogleCloudPlatform/container-diff/differs",
38+
importpath = "github.com/GoogleContainerTools/container-diff/differs",
3939
deps = [
4040
"//pkg/util:go_default_library",
4141
"//util:go_default_library",

differs/apt_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"strconv"
2424
"strings"
2525

26-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
27-
"github.com/GoogleCloudPlatform/container-diff/util"
26+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
27+
"github.com/GoogleContainerTools/container-diff/util"
2828
"github.com/sirupsen/logrus"
2929
)
3030

differs/apt_diff_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"reflect"
2121
"testing"
2222

23-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
24-
"github.com/GoogleCloudPlatform/container-diff/util"
23+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
24+
"github.com/GoogleContainerTools/container-diff/util"
2525
)
2626

2727
func TestParseLine(t *testing.T) {

differs/differs.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package differs
1919
import (
2020
"fmt"
2121

22-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
23-
"github.com/GoogleCloudPlatform/container-diff/util"
22+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
23+
"github.com/GoogleContainerTools/container-diff/util"
2424
"github.com/sirupsen/logrus"
2525
)
2626

differs/file_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ limitations under the License.
1717
package differs
1818

1919
import (
20-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
21-
"github.com/GoogleCloudPlatform/container-diff/util"
20+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
21+
"github.com/GoogleContainerTools/container-diff/util"
2222
)
2323

2424
type FileAnalyzer struct {

differs/history_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package differs
1919
import (
2020
"strings"
2121

22-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
23-
"github.com/GoogleCloudPlatform/container-diff/util"
22+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
23+
"github.com/GoogleContainerTools/container-diff/util"
2424
)
2525

2626
type HistoryAnalyzer struct {

differs/metadata_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ limitations under the License.
1717
package differs
1818

1919
import (
20-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
21-
"github.com/GoogleCloudPlatform/container-diff/util"
20+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
21+
"github.com/GoogleContainerTools/container-diff/util"
2222
)
2323

2424
type MetadataAnalyzer struct {

differs/node_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ import (
2323
"path/filepath"
2424
"strings"
2525

26-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
27-
"github.com/GoogleCloudPlatform/container-diff/util"
26+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
27+
"github.com/GoogleContainerTools/container-diff/util"
2828
"github.com/sirupsen/logrus"
2929
)
3030

differs/node_diff_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"reflect"
2121
"testing"
2222

23-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
24-
"github.com/GoogleCloudPlatform/container-diff/util"
23+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
24+
"github.com/GoogleContainerTools/container-diff/util"
2525
)
2626

2727
func TestGetNodePackages(t *testing.T) {

differs/package_differs.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package differs
1919
import (
2020
"strings"
2121

22-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
23-
"github.com/GoogleCloudPlatform/container-diff/util"
22+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
23+
"github.com/GoogleContainerTools/container-diff/util"
2424
)
2525

2626
type MultiVersionPackageAnalyzer interface {

differs/pip_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ import (
2222
"regexp"
2323
"strings"
2424

25-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
26-
"github.com/GoogleCloudPlatform/container-diff/util"
25+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
26+
"github.com/GoogleContainerTools/container-diff/util"
2727
"github.com/sirupsen/logrus"
2828
)
2929

differs/pip_diff_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ import (
2020
"reflect"
2121
"testing"
2222

23-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
24-
"github.com/GoogleCloudPlatform/container-diff/util"
23+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
24+
"github.com/GoogleContainerTools/container-diff/util"
2525
)
2626

2727
func TestGetPythonVersion(t *testing.T) {

differs/rpm_diff.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ import (
3232
"sync"
3333
"time"
3434

35-
pkgutil "github.com/GoogleCloudPlatform/container-diff/pkg/util"
36-
"github.com/GoogleCloudPlatform/container-diff/util"
35+
pkgutil "github.com/GoogleContainerTools/container-diff/pkg/util"
36+
"github.com/GoogleContainerTools/container-diff/util"
3737
dockertar "github.com/containers/image/docker/tarfile"
3838
godocker "github.com/fsouza/go-dockerclient"
3939
"github.com/nightlyone/lockfile"

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"fmt"
2222
"os"
2323

24-
"github.com/GoogleCloudPlatform/container-diff/cmd"
24+
"github.com/GoogleContainerTools/container-diff/cmd"
2525
"github.com/pkg/profile"
2626
)
2727

pkg/cache/BUILD.bazel

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ load("@io_bazel_rules_go//go:def.bzl", "go_library")
33
go_library(
44
name = "go_default_library",
55
srcs = ["file_cache.go"],
6-
importpath = "github.com/GoogleCloudPlatform/container-diff/pkg/cache",
6+
importpath = "github.com/GoogleContainerTools/container-diff/pkg/cache",
77
visibility = ["//visibility:public"],
88
deps = [
99
"//pkg/image:go_default_library",

pkg/cache/file_cache.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import (
2222
"os"
2323
"path/filepath"
2424

25-
"github.com/GoogleCloudPlatform/container-diff/pkg/image"
25+
"github.com/GoogleContainerTools/container-diff/pkg/image"
2626
"github.com/containers/image/types"
2727
"github.com/sirupsen/logrus"
2828
)

pkg/image/BUILD.bazel

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ go_library(
66
"mutable_source.go",
77
"proxy_types.go",
88
],
9-
importpath = "github.com/GoogleCloudPlatform/container-diff/pkg/image",
9+
importpath = "github.com/GoogleContainerTools/container-diff/pkg/image",
1010
visibility = ["//visibility:public"],
1111
deps = [
1212
"//vendor/github.com/containers/image/image:go_default_library",
@@ -21,7 +21,7 @@ go_test(
2121
name = "go_default_test",
2222
srcs = ["mutable_source_test.go"],
2323
embed = [":go_default_library"],
24-
importpath = "github.com/GoogleCloudPlatform/container-diff/pkg/image",
24+
importpath = "github.com/GoogleContainerTools/container-diff/pkg/image",
2525
deps = [
2626
"//vendor/github.com/containers/image/manifest:go_default_library",
2727
"//vendor/github.com/containers/image/types:go_default_library",

0 commit comments

Comments
 (0)