Browse Source

build: Replace hypen in -dirty for version (ref #6758) (#6858)

Simon Frei 5 năm trước cách đây
mục cha
commit
21dd9d6b43
1 tập tin đã thay đổi với 4 bổ sung1 xóa
  1. 4 1
      build.go

+ 4 - 1
build.go

@@ -874,7 +874,10 @@ func getGitVersion() (string, error) {
 	}
 	v0 := string(bs)
 
-	versionRe := regexp.MustCompile(`-([0-9]{1,3}-g[0-9a-f]{5,10})`)
+	// To be more semantic-versionish and ensure proper ordering in our
+	// upgrade process, we make sure there's only one hypen in the version.
+
+	versionRe := regexp.MustCompile(`-([0-9]{1,3}-g[0-9a-f]{5,10}(-dirty)?)`)
 	if m := versionRe.FindStringSubmatch(vcur); len(m) > 0 {
 		suffix := strings.ReplaceAll(m[1], "-", ".")