summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-05-11 21:12:57 -0600
committermo khan <mo@mokhan.ca>2025-05-11 21:12:57 -0600
commit60440f90dca28e99a31dd328c5f6d5dc0f9b6a2e (patch)
tree2f54adf55086516f162f0a55a5347e6b25f7f176 /Makefile
parent05ca9b8d3a9c7203a3a3b590beaa400900bd9007 (diff)
chore: vendor go dependencies
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a132cfd..1d5ba61 100644
--- a/Makefile
+++ b/Makefile
@@ -43,9 +43,10 @@ sh-image: build-builder-image
@docker run --rm -it $(IMAGE_TAG) /bin/sh
lint:
- @yamlfmt --lint .
+ @yamlfmt --lint -exclude vendor .
tidy:
@go get -u ./...
@go mod tidy
- @yamlfmt .
+ @go mod vendor
+ @yamlfmt -exclude vendor .