Merge pull request #250 from lionelnicolas/bugfix/fix-copy-paste-in-makefile

installScript: fix duplication in curl command (thanks @lionelnicolas)
This commit is contained in:
Thorsten Klein 2020-05-27 07:20:14 +02:00 committed by GitHub
commit 2a0b425f67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ K3S_TAG := $(shell curl --silent "https://update.k3s.io/v1-release/channels/sta
ifeq ($(K3S_TAG),)
$(warning K3S_TAG undefined: couldn't get latest k3s image tag!)
$(warning Output of curl: $(shell curl --silent "curl --silent "https://update.k3s.io/v1-release/channels/stable""))
$(warning Output of curl: $(shell curl --silent "https://update.k3s.io/v1-release/channels/stable"))
$(error exiting)
endif