Skip to content
This repository has been archived by the owner on Jan 28, 2022. It is now read-only.

Commit

Permalink
Fixing issue retrieving uname in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Storey committed Feb 17, 2020
1 parent d6d743b commit 326b468
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ deploy-kindcluster:
install-kind:
ifeq (,$(shell which kind))
@echo "installing kind"
curl -Lo ./kind "https://github.com/kubernetes-sigs/kind/releases/download/v0.7.0/kind-$(uname)-amd64"
curl -Lo ./kind "https://github.com/kubernetes-sigs/kind/releases/download/v0.7.0/kind-$(shell uname)-amd64"
chmod +x ./kind
mv ./kind /usr/local/bin/kind
else
Expand Down

0 comments on commit 326b468

Please sign in to comment.