Nightlies: Remove pre suffix from GetLatestMainBuild regexp (#73978)
Remove pre suffix from GetLatestMainBuild regexp
This commit is contained in:
@@ -418,7 +418,7 @@ func GetLatestMainBuild(ctx context.Context, bucket *storage.BucketHandle, path
|
||||
|
||||
var latestVersion string
|
||||
for i := 0; i < len(files); i++ {
|
||||
captureVersion := regexp.MustCompile(`(\d+\.\d+\.\d+-\d+pre)`)
|
||||
captureVersion := regexp.MustCompile(`(\d+\.\d+\.\d+-\d+)`)
|
||||
if captureVersion.MatchString(files[i]) {
|
||||
latestVersion = captureVersion.FindString(files[i])
|
||||
break
|
||||
|
||||
Reference in New Issue
Block a user