We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent26df0e5 commit2a6f8e7Copy full SHA for 2a6f8e7
scripts/release/main.go
@@ -387,7 +387,7 @@ func (r *releaseCommand) autoversionFile(ctx context.Context, file, channel, ver
387
ifmatch:=matchRe.FindStringSubmatchIndex(line);match!=nil {
388
vg:=matchRe.SubexpIndex("version")
389
ifvg==-1 {
390
-logger.Error(ctx,"version group not found in match","num_subexp","match",match,matchRe.NumSubexp(),"subexp_names",matchRe.SubexpNames())
+logger.Error(ctx,"version group not found in match","num_subexp",matchRe.NumSubexp(),"subexp_names",matchRe.SubexpNames(),"match",match)
391
returnxerrors.Errorf("bug: version group not found in match")
392
}
393
start:=match[vg*2]