From 3670965aa61f7ff7d869b3f5042bc482fcae4239 Mon Sep 17 00:00:00 2001 From: "kwadronaut kwadronaut@leap.se" Date: Mon, 7 Oct 2019 10:05:17 +0200 Subject: Fix (makefile): symlink in vendored to built binaries Closese #195 Signed-off-by: Ruben Pollan --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bfcb174..bfb708c 100644 --- a/Makefile +++ b/Makefile @@ -76,7 +76,7 @@ build_%: @mkdir -p build/bin/${PLATFORM} go build -tags $(TAGS) -ldflags "-s -w -X main.version=`git describe --tags`" -o build/bin/${PLATFORM}/$* ./cmd/$* -@rm -rf build/${PROVIDER}/staging/${PLATFORM} && mkdir -p build/${PROVIDER}/staging/${PLATFORM} - -@ln -s ../../bin/${PLATFORM}/$* build/${PROVIDER}/staging/${PLATFORM}/$* + -@ln -s ../../../bin/${PLATFORM}/$* build/${PROVIDER}/staging/${PLATFORM}/$* test: @go test -tags "integration $(TAGS)" ./... -- cgit v1.2.3