Remove comments in Makefile

This commit is contained in:
Jakub Al-Khalili 2019-09-10 15:58:56 +02:00
parent 1a8dad3b05
commit 428be7d7bd
1 changed files with 0 additions and 2 deletions

View File

@ -445,9 +445,7 @@ ifndef TRAVIS
@echo "+ $@ - This goal only works on Travis CI"
else
@echo "+ $@"
# Download kubectl, which is a requirement for using minikube.
curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/$(MINIKUBE_KUBERNETES_VERSION)/bin/linux/amd64/kubectl && chmod +x kubectl && sudo mv kubectl /usr/local/bin/
# Download minikube.
curl -Lo minikube https://storage.googleapis.com/minikube/releases/$(MINIKUBE_VERSION)/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
curl -Lo operator-sdk https://github.com/operator-framework/operator-sdk/releases/download/$(OPERATOR_SDK_VERSION)/operator-sdk-$(OPERATOR_SDK_VERSION)-x86_64-linux-gnu && chmod +x operator-sdk && sudo mv operator-sdk /usr/local/bin/
mkdir -p $(HOME)/.kube $(HOME)/.minikube