From bb36f33e9f1df0266fd34500aed0e04979b2332c Mon Sep 17 00:00:00 2001 From: David Moore Date: Thu, 11 Apr 2024 12:45:11 +1000 Subject: [PATCH] fix: ensure cli templates are always updated --- pkg/project/templates/contents.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkg/project/templates/contents.go b/pkg/project/templates/contents.go index d10aa81ce..7c97925af 100644 --- a/pkg/project/templates/contents.go +++ b/pkg/project/templates/contents.go @@ -155,7 +155,9 @@ func (d *downloader) repository() error { // provide the getter needed to download the files Getters: map[string]getter.Getter{ - "https": &getter.HttpGetter{}, + "https": &getter.HttpGetter{ + DoNotCheckHeadFirst: true, + }, }, })