Skip to content

Commit

Permalink
Fix minikube
Browse files Browse the repository at this point in the history
  • Loading branch information
thegridman committed Jun 27, 2024
1 parent 466f5da commit 941b389
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -1679,18 +1679,18 @@ $(TOOLS_BIN)/minikube:
ifeq (Darwin, $(UNAME_S))
ifeq (x86_64, $(UNAME_M))
curl -LOs https://storage.googleapis.com/minikube/releases/$(MINIKUBE_VERSION)/minikube-darwin-amd64
mkdir -p $(TOOLS_BIN)/minikube || true
mkdir -p $(TOOLS_BIN) || true
install minikube-darwin-amd64 $(TOOLS_BIN)/minikube
rm minikube-darwin-amd64
else
curl -LOs https://storage.googleapis.com/minikube/releases/$(MINIKUBE_VERSION)/minikube-darwin-arm64
mkdir -p $(TOOLS_BIN)/minikube || true
mkdir -p $(TOOLS_BIN) || true
install minikube-darwin-arm64 $(TOOLS_BIN)/minikube
rm minikube-darwin-arm64
endif
else
curl -LOs https://storage.googleapis.com/minikube/releases/$(MINIKUBE_VERSION)/minikube-linux-amd64
mkdir -p $(TOOLS_BIN)/minikube || true
mkdir -p $(TOOLS_BIN) || true
install minikube-linux-amd64 $(TOOLS_BIN)/minikube
rm minikube-linux-amd64
endif
Expand Down

0 comments on commit 941b389

Please sign in to comment.