Disable vendoring

This commit is contained in:
2020-11-03 11:48:53 +01:00
parent c07753b21a
commit 14770d7146
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
build: vendor
CGO_ENABLED=0 go build -mod=vendor -v -o bin/fake-smtp ./cmd/fake-smtp
build:
CGO_ENABLED=0 go build -v -o bin/fake-smtp ./cmd/fake-smtp
docker-image:
docker build \
@ -33,9 +33,6 @@ release: dist
dist:
npm run build
vendor:
go mod vendor
tidy:
go mod tidy