From 5bd8aea8b96197b1395714d744257b4ced16c8e3 Mon Sep 17 00:00:00 2001 From: "M. Mert Yildiran" Date: Sat, 26 Nov 2022 21:51:12 +0300 Subject: [PATCH] :wrench: Fix the `build-base` Makefile rule --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f120917e7..732e47869 100644 --- a/Makefile +++ b/Makefile @@ -32,8 +32,8 @@ build-base: ## Build kubeshark CLI binary (select platform via GOOS / GOARCH env -X 'github.com/kubeshark/kubeshark/kubeshark.BuildTimestamp=$(BUILD_TIMESTAMP)' \ -X 'github.com/kubeshark/kubeshark/kubeshark.Platform=$(SUFFIX)' \ -X 'github.com/kubeshark/kubeshark/kubeshark.Ver=$(VER)'" \ - -o bin/kubeshark_$(SUFFIX) kubeshark.go - (cd bin && shasum -a 256 kubeshark_${SUFFIX} > kubeshark_${SUFFIX}.sha256) + -o bin/kubeshark_$(SUFFIX) kubeshark.go && \ + cd bin && shasum -a 256 kubeshark_${SUFFIX} > kubeshark_${SUFFIX}.sha256 build-all: ## Build for all supported platforms. echo "Compiling for every OS and Platform" && \