Skip to content

Commit 50a1611

Browse files
author
openset
committed
Update: CmdHelper
1 parent 9436638 commit 50a1611

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

internal/helper/helper.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ func runHelper(cmd *base.Command, args []string) {
2222
buf.WriteString(base.AuthInfo("helper"))
2323
buf.WriteString("\n# Helper\n\n")
2424
buf.WriteString("```text\n")
25-
out, err := exec.Command(base.CmdName).Output()
26-
base.CheckErr(err)
25+
out, _ := exec.Command(base.CmdName).Output()
2726
buf.Write(out)
2827
buf.WriteString("```\n")
2928
base.FilePutContents("helper/README.md", buf.Bytes())

0 commit comments

Comments
 (0)