Mark Struik
Results
2
comments of
Mark Struik
I think you can actually => https://github.com/charmbracelet/bubbletea/blob/master/exec.go#L22 Just use the override that excepts the full process which has a stdoutput
Ok so i was working on something similar, this would give you the output. ``` func getGitBranch() tea.Msg { out, err := exec.Command("git", "rev-parse", "--abbrev-ref", "HEAD").Output() if err != nil...