summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <[email protected]>2017-10-16 15:36:57 +0200
committerCarlos Martín Nieto <[email protected]>2017-10-16 15:36:57 +0200
commitcd779176d12785405a65e4286d317f42a245777e (patch)
treef5e1c895720d667ebe2bacc654cdf574e61c7c75
parent72510e9d3ab25cb3ab56dba62d2d7a2c9fe236ad (diff)
README: correct the branches in the testing block
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index abf49c4..4bd2e7e 100644
--- a/README.md
+++ b/README.md
@@ -47,14 +47,14 @@ libgit2 may use OpenSSL and LibSSH2 for performing encrypted network connections
Running the tests
-----------------
-For the stable version, `go test` will work as usual. For the `next` branch, similarly to installing, running the tests requires building a local libgit2 library, so the Makefile provides a wrapper that makes sure it's built
+For the stable version, `go test` will work as usual. For the `master` branch, similarly to installing, running the tests requires building a local libgit2 library, so the Makefile provides a wrapper that makes sure it's built
- make test
+ make test-static
Alternatively, you can build the library manually first and then run the tests
./script/build-libgit2-static.sh
- go test -v
+ go test -v --tags "static" ./...
License
-------