fix regex

pull/12375/head
Medya Gh 2021-08-30 15:04:41 -07:00
parent 2e9915dbbf
commit b6dfcd53e5
1 changed files with 2 additions and 2 deletions

View File

@ -119,8 +119,8 @@ var (
"Makefile": { "Makefile": {
Replace: map[string]string{ Replace: map[string]string{
// searching for 1.* so it does NOT match "KVM_GO_VERSION ?= $(GO_VERSION:.0=)" in the Makefile // searching for 1.* so it does NOT match "KVM_GO_VERSION ?= $(GO_VERSION:.0=)" in the Makefile
`GO_VERSION \?= 1.*`: `GO_VERSION ?= {{.StableVersion}}`, `GO_VERSION \?= 1.*`: `GO_VERSION ?= {{.StableVersion}}`,
`GO_K8S_VERSION \?= v1.*`: `GO_K8S_VERSION ?= {{.K8SVersion}}`, `GO_K8S_VERSION_PREFIX \?= v1.*`: `GO_K8S_VERSION_PREFIX ?= {{.K8SVersion}}`,
}, },
}, },
} }