1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-03 01:45:47 +00:00

fix and readd test-vendor step

This commit is contained in:
a1012112796 2022-01-15 19:26:43 +08:00
parent 620ee4766a
commit 686e8ded28
No known key found for this signature in database
GPG Key ID: CE07FB063B38A62C

View File

@ -295,7 +295,7 @@ checks: checks-frontend checks-backend
checks-frontend: svg-check
.PHONY: checks-backend
checks-backend: swagger-check swagger-validate
checks-backend: test-vendor swagger-check swagger-validate
.PHONY: lint
lint: lint-frontend lint-backend
@ -371,7 +371,7 @@ vendor:
.PHONY: test-vendor
test-vendor: vendor
@diff=$$(git diff vendor/); \
@diff=$$(git diff go.mod go.sum); \
if [ -n "$$diff" ]; then \
echo "Please run 'make vendor' and commit the result:"; \
echo "$${diff}"; \