cmd/geth: update template for 'geth bug' command (#16350)
This commit is contained in:
parent
50dbe8e244
commit
c43792a42c
@ -49,15 +49,17 @@ func reportBug(ctx *cli.Context) error {
|
|||||||
// execute template and write contents to buff
|
// execute template and write contents to buff
|
||||||
var buff bytes.Buffer
|
var buff bytes.Buffer
|
||||||
|
|
||||||
fmt.Fprintln(&buff, header)
|
fmt.Fprintln(&buff, "#### System information")
|
||||||
|
fmt.Fprintln(&buff)
|
||||||
fmt.Fprintln(&buff, "Version:", params.Version)
|
fmt.Fprintln(&buff, "Version:", params.Version)
|
||||||
fmt.Fprintln(&buff, "Go Version:", runtime.Version())
|
fmt.Fprintln(&buff, "Go Version:", runtime.Version())
|
||||||
fmt.Fprintln(&buff, "OS:", runtime.GOOS)
|
fmt.Fprintln(&buff, "OS:", runtime.GOOS)
|
||||||
printOSDetails(&buff)
|
printOSDetails(&buff)
|
||||||
|
fmt.Fprintln(&buff, header)
|
||||||
|
|
||||||
// open a new GH issue
|
// open a new GH issue
|
||||||
if !browser.Open(issueUrl + "?body=" + url.QueryEscape(buff.String())) {
|
if !browser.Open(issueUrl + "?body=" + url.QueryEscape(buff.String())) {
|
||||||
fmt.Printf("Please file a new issue at %s using this template:\n%s", issueUrl, buff.String())
|
fmt.Printf("Please file a new issue at %s using this template:\n\n%s", issueUrl, buff.String())
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
@ -97,13 +99,15 @@ func printCmdOut(w io.Writer, prefix, path string, args ...string) {
|
|||||||
fmt.Fprintf(w, "%s%s\n", prefix, bytes.TrimSpace(out))
|
fmt.Fprintf(w, "%s%s\n", prefix, bytes.TrimSpace(out))
|
||||||
}
|
}
|
||||||
|
|
||||||
const header = `Please answer these questions before submitting your issue. Thanks!
|
const header = `
|
||||||
|
#### Expected behaviour
|
||||||
|
|
||||||
#### What did you do?
|
|
||||||
|
|
||||||
#### What did you expect to see?
|
#### Actual behaviour
|
||||||
|
|
||||||
#### What did you see instead?
|
|
||||||
|
|
||||||
#### System details
|
#### Steps to reproduce the behaviour
|
||||||
|
|
||||||
|
|
||||||
|
#### Backtrace
|
||||||
`
|
`
|
||||||
|
Loading…
Reference in New Issue
Block a user