FIX #8 Remove Wait method call

This commit is contained in:
Adam Cooper 2022-05-19 09:55:40 -04:00
parent 7b55a29cea
commit a084c771b7
1 changed files with 0 additions and 12 deletions

12
main.go
View File

@ -112,18 +112,6 @@ func launch(m model) tea.Cmd {
}
}
/*
for r, item := range m.choices {
if _, ok := m.selected[r]; ok {
err := item.command.Wait()
if err != nil {
result += statusMsg(fmt.Sprintf("%v\n", err))
log.Fatalf("Error during Wait(): %v\n", err)
}
}
}
*/
return result
}
}