1
0

backport of commit 1885f16d8b81e6cfe0f13d3d8f9230c330ebe608 (#26152)

Co-authored-by: miagilepner <mia.epner@hashicorp.com>
This commit is contained in:
hc-github-team-secure-vault-core 2024-03-26 05:19:36 -06:00 committed by GitHub
parent ce642ba6da
commit 3099c73752
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -154,7 +154,7 @@ ci-lint: check-tools-external
# now run as a pre-commit hook (and there's little value in
# making every build run the formatter), we've removed that
# dependency.
prep: check-go-version
prep: check-go-version clean
@echo "==> Running go generate..."
@GOARCH= GOOS= $(GO_CMD) generate $(MAIN_PACKAGES)
@GOARCH= GOOS= cd api && $(GO_CMD) generate $(API_PACKAGES)
@ -382,3 +382,7 @@ ci-copywriteheaders:
.PHONY: all-packages
all-packages:
@echo $(ALL_PACKAGES) | tr ' ' '\n'
.PHONY: clean
clean:
@echo "==> Cleaning..."