We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46da46 commit 034fc60Copy full SHA for 034fc60
2 files changed
mkreadme/make_readme.go
@@ -40,6 +40,9 @@ func getCmdOutput(cmdText string) string {
40
// #nosec G204
41
cmd := exec.Command(command, args...)
42
stdout, err := cmd.StdoutPipe()
43
+ if err != nil {
44
+ common.Exitf(1, "# ERROR: %s", err)
45
+ }
46
if err = cmd.Start(); err != nil {
47
common.Exitf(1, "# ERROR: %s", err)
48
}
mkwiki/make_docs.go
0 commit comments