mirror of
https://github.com/jstemmer/go-junit-report.git
synced 2025-04-04 12:40:15 -05:00
Add -version flag to print current version
This commit is contained in:
parent
984a47ca6b
commit
b2b06e7a1e
@ -9,16 +9,28 @@ import (
|
||||
"github.com/jstemmer/go-junit-report/parser"
|
||||
)
|
||||
|
||||
var (
|
||||
Version = "v0.9.1-dev"
|
||||
Revision = "HEAD"
|
||||
BuildTime string
|
||||
)
|
||||
|
||||
var (
|
||||
noXMLHeader = flag.Bool("no-xml-header", false, "do not print xml header")
|
||||
packageName = flag.String("package-name", "", "specify a package name (compiled test have no package name in output)")
|
||||
goVersionFlag = flag.String("go-version", "", "specify the value to use for the go.version property in the generated XML")
|
||||
setExitCode = flag.Bool("set-exit-code", false, "set exit code to 1 if tests failed")
|
||||
version = flag.Bool("version", false, "print version")
|
||||
)
|
||||
|
||||
func main() {
|
||||
flag.Parse()
|
||||
|
||||
if *version {
|
||||
fmt.Printf("go-junit-report %s %s (%s)\n", Version, BuildTime, Revision)
|
||||
return
|
||||
}
|
||||
|
||||
if flag.NArg() != 0 {
|
||||
fmt.Fprintf(os.Stderr, "%s does not accept positional arguments\n", os.Args[0])
|
||||
flag.Usage()
|
||||
|
Loading…
x
Reference in New Issue
Block a user