From 35e214f2fa04337a651df5e7896bc7dac1783c58 Mon Sep 17 00:00:00 2001 From: Rajat Jindal Date: Sun, 10 Nov 2024 22:33:43 +0530 Subject: [PATCH] fix(netlify): vendor dir is no longer used Signed-off-by: Rajat Jindal --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 93e23de..66eae56 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,6 @@ lambda: mkdir -p functions - CGO_ENABLED=0 GOOS=linux go build -mod vendor --ldflags "-s -w" -o functions/github-action-webhook cmd/webhook/main.go + CGO_ENABLED=0 GOOS=linux go build --ldflags "-s -w" -o functions/github-action-webhook cmd/webhook/main.go all: lambda \ No newline at end of file