fix: add vendor to makefile

This commit is contained in:
nekohepott 2026-06-17 04:16:35 +03:00
parent 5c6849ae94
commit 22da87e2b0
No known key found for this signature in database

View File

@ -7,7 +7,7 @@ all: build
build: build:
@echo "Building $(BINARY_NAME)..." @echo "Building $(BINARY_NAME)..."
@go build -ldflags="-s -w" -o $(BINARY_NAME) ./src @go build -mod=vendor -ldflags="-s -w" -o $(BINARY_NAME) ./src
@echo "Build completed successfully." @echo "Build completed successfully."
install: install: