From 8d428a759cbd4eca3934938fc39d90287c434206 Mon Sep 17 00:00:00 2001 From: Matt Rickard Date: Thu, 4 May 2017 17:19:06 -0700 Subject: [PATCH] Fix release-iso makefile rule Remove the dependency on cross from checksum. This means that checksum can be called without all binaries being built, but no checksums will be generate for those binaries. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5051a3b32..744e2ee2c 100644 --- a/Makefile +++ b/Makefile @@ -127,7 +127,7 @@ $(GOPATH)/bin/go-bindata: $(GOPATH)/src/$(ORG) cross: out/localkube out/minikube-linux-amd64 out/minikube-darwin-amd64 out/minikube-windows-amd64.exe .PHONY: checksum -checksum: cross +checksum: for f in out/localkube out/minikube-linux-amd64 out/minikube-darwin-amd64 out/minikube-windows-amd64.exe out/minikube.iso; do \ if [ -f "$${f}" ]; then \ openssl sha256 "$${f}" | awk '{print $$2}' > "$${f}.sha256" ; \ -- GitLab