(path string, script string, args ...string)
| 463 | } |
| 464 | |
| 465 | func RunScriptWithString(path string, script string, args ...string) { |
| 466 | var err error |
| 467 | err = RunInTerminalWithColor("bin/sh", args) |
| 468 | if err != nil { |
| 469 | log.Debug().Err(err).Send() |
| 470 | } |
| 471 | } |
| 472 | |
| 473 | func parseManPage(subCmd string) string { |
| 474 | msg, err := exec.Command("/bin/bash", "-c", "git help "+subCmd+" | col -b").CombinedOutput() |
nothing calls this directly
no test coverage detected