We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 723c6a0 commit 4eba156Copy full SHA for 4eba156
cmds/tagcmd/cmd.go
@@ -22,11 +22,7 @@ func New() *cli.Command {
22
Action: func(ctx context.Context, command *cli.Command) error {
23
defer recovery.Exit()
24
25
- var done = make(chan struct{})
26
- go func() {
27
- defer close(done)
28
- utils.GitFetchAll()
29
- }()
+ utils.GitFetchAll()
30
31
var p = tea.NewProgram(initialModel())
32
m := assert.Must1(p.Run()).(model)
@@ -35,8 +31,6 @@ func New() *cli.Command {
35
return nil
36
}
37
33
38
- <-done
39
-
40
34
tags := utils.GetAllGitTags()
41
ver := utils.GetNextTag(selected, tags)
42
if selected == envRelease {
0 commit comments