Skip to content

Commit 78ec700

Browse files
committed
revert
1 parent deb3df5 commit 78ec700

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,7 @@ unit-test-coverage:
451451
tidy: ## run go mod tidy
452452
$(eval MIN_GO_VERSION := $(shell grep -Eo '^go\s+[0-9]+\.[0-9.]+' go.mod | cut -d' ' -f2))
453453
$(GO) mod tidy -compat=$(MIN_GO_VERSION)
454-
# disabled because of issues related to https://github.com/google/go-licenses/issues/128
455-
# @$(MAKE) --no-print-directory $(GO_LICENSE_FILE)
454+
@$(MAKE) --no-print-directory $(GO_LICENSE_FILE)
456455

457456
vendor: go.mod go.sum
458457
$(GO) mod vendor
@@ -471,7 +470,7 @@ tidy-check: tidy
471470
go-licenses: $(GO_LICENSE_FILE) ## regenerate go licenses
472471

473472
$(GO_LICENSE_FILE): go.mod go.sum
474-
-$(GO) run $(GO_LICENSES_PACKAGE) save . --force --save_path=$(GO_LICENSE_TMP_DIR)
473+
-$(GO) run $(GO_LICENSES_PACKAGE) save . --force --save_path=$(GO_LICENSE_TMP_DIR) 2>/dev/null
475474
$(GO) run build/generate-go-licenses.go $(GO_LICENSE_TMP_DIR) $(GO_LICENSE_FILE)
476475
@rm -rf $(GO_LICENSE_TMP_DIR)
477476

0 commit comments

Comments
 (0)