fix: panic if empty tags in auto mode
parent
1521db7bb8
commit
78ce559398
|
@ -64,7 +64,7 @@ func (a *action) RunGenerate(c *cli.Context) error {
|
|||
|
||||
if useLatestTag {
|
||||
tags, err := repo.SemVerTags()
|
||||
if err == nil {
|
||||
if err == nil && len(tags) > 0 {
|
||||
a.flags.to = tags[len(tags)-1].Version.Original()
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue