From 91e1fa263897d98ca26eaab5356bd4b555a7b7fa Mon Sep 17 00:00:00 2001 From: William Petit Date: Fri, 15 Oct 2021 13:04:15 +0200 Subject: [PATCH] =?UTF-8?q?D=C3=A9sactivation=20du=20vendoring?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Makefile | 2 +- script/release | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 830dab2..9b91b48 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ build: pack - CGO_ENABLED=0 go build -mod vendor -v -o bin/junit2md ./cmd/junit2md + CGO_ENABLED=0 go build -v -o bin/junit2md ./cmd/junit2md pack: cd cmd/junit2md && packr2 -v diff --git a/script/release b/script/release index 3c16567..edc246e 100755 --- a/script/release +++ b/script/release @@ -23,7 +23,6 @@ function build { echo "building $dirname..." CGO_ENABLED=0 GOOS="$os" GOARCH="$arch" go build \ - -mod=vendor \ -ldflags="-s -w -X main.GitCommit=$(current_commit_ref) -X main.ProjectVersion=$(current_version)" \ -gcflags=-trimpath="${PWD}" \ -asmflags=-trimpath="${PWD}" \