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

Commit 3459d94

Browse files
committed
add todo to fix error handling in root. gazelle
1 parent c077f24 commit 3459d94

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

Makefile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ RELEASE_BUCKET ?= $(PROJECT)
3030
SUPPORTED_PLATFORMS := linux-$(GOARCH) darwin-$(GOARCH) windows-$(GOARCH).exe
3131
BUILD_PACKAGE = $(REPOPATH)
3232

33+
SHELL = sh -xv
34+
3335
# These build tags are from the containers/image library.
3436
#
3537
# container_image_ostree_stub allows building the library without requiring the libostree development libraries

cmd/diff.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ func diffImages(image1Arg, image2Arg string, diffArgs []string) error {
7777
image1Arg: {},
7878
image2Arg: {},
7979
}
80+
// TODO: fix error handling here
8081
for imageArg := range imageMap {
8182
go func(imageName string, imageMap map[string]*pkgutil.Image) {
8283
defer wg.Done()

pkg/util/BUILD.bazel

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ go_library(
88
"docker_utils.go",
99
"fs_utils.go",
1010
"image_prep_utils.go",
11-
"image_prepper.go",
1211
"image_utils.go",
1312
"tar_prepper.go",
1413
"tar_utils.go",
@@ -17,7 +16,6 @@ go_library(
1716
deps = [
1817
"//vendor/github.com/containers/image/docker:go_default_library",
1918
"//vendor/github.com/containers/image/docker/daemon:go_default_library",
20-
"//vendor/github.com/containers/image/docker/reference:go_default_library",
2119
"//vendor/github.com/containers/image/docker/tarfile:go_default_library",
2220
"//vendor/github.com/containers/image/pkg/compression:go_default_library",
2321
"//vendor/github.com/containers/image/types:go_default_library",

util/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ go_test(
2525
name = "go_default_test",
2626
srcs = [
2727
"fs_utils_test.go",
28-
"image_utils_test.go",
2928
"output_sort_utils_test.go",
3029
"package_diff_utils_test.go",
3130
"tar_utils_test.go",

0 commit comments

Comments
 (0)