From 52c0789eb753dd764b9d5be6a5972637e16ca847 Mon Sep 17 00:00:00 2001 From: ZHANG Dapeng Date: Tue, 18 Dec 2018 12:19:59 -0800 Subject: [PATCH] doc: fix bazel-bin pointer in example-tls README --- examples/example-tls/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/example-tls/README.md b/examples/example-tls/README.md index 69ef6af495..0c92192493 100644 --- a/examples/example-tls/README.md +++ b/examples/example-tls/README.md @@ -119,7 +119,7 @@ If you prefer to use Bazel: (With Bazel v0.8.0 or above.) $ bazel build :hello-world-tls-server :hello-world-tls-client $ # Run the server -$ bazel-bin/hello-world-tls-server localhost 50440 /tmp/sslcert/server.crt /tmp/sslcert/server.pem +$ ../bazel-bin/hello-world-tls-server localhost 50440 /tmp/sslcert/server.crt /tmp/sslcert/server.pem $ # In another terminal run the client -$ bazel-bin/hello-world-tls-client localhost 50440 /tmp/sslcert/ca.crt +$ ../bazel-bin/hello-world-tls-client localhost 50440 /tmp/sslcert/ca.crt ```