From 8a7cf5640105e3f45d9a5262e7e3bdb8c0078c7e Mon Sep 17 00:00:00 2001 From: PascalB Date: Thu, 14 Jun 2018 16:12:03 +0200 Subject: [PATCH] fix path in doc avoid an error like this : -bash: ./go-junit-report: No such file or directory --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2a891e..4ea2658 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ go test -v 2>&1 | go-junit-report > report.xml Note that it also can parse benchmark output with `-bench` flag: ```bash -go test -v -bench . -count 5 2>&1 | ./go-junit-report > report.xml +go test -v -bench . -count 5 2>&1 | go-junit-report > report.xml ``` [travis-badge]: https://travis-ci.org/jstemmer/go-junit-report.svg