mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Nightlies: Remove pre
suffix from GetLatestMainBuild regexp (#73978)
Remove pre suffix from GetLatestMainBuild regexp
This commit is contained in:
parent
da4fd282b3
commit
ddd4270c94
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user