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 9436638 commit 50a1611Copy full SHA for 50a1611
internal/helper/helper.go
@@ -22,8 +22,7 @@ func runHelper(cmd *base.Command, args []string) {
22
buf.WriteString(base.AuthInfo("helper"))
23
buf.WriteString("\n# Helper\n\n")
24
buf.WriteString("```text\n")
25
- out, err := exec.Command(base.CmdName).Output()
26
- base.CheckErr(err)
+ out, _ := exec.Command(base.CmdName).Output()
27
buf.Write(out)
28
buf.WriteString("```\n")
29
base.FilePutContents("helper/README.md", buf.Bytes())
0 commit comments