doc: fix bazel-bin pointer in example-tls README

This commit is contained in:
ZHANG Dapeng 2018-12-18 12:19:59 -08:00 committed by GitHub
parent 6779a5aa75
commit 52c0789eb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -119,7 +119,7 @@ If you prefer to use Bazel:
(With Bazel v0.8.0 or above.) (With Bazel v0.8.0 or above.)
$ bazel build :hello-world-tls-server :hello-world-tls-client $ bazel build :hello-world-tls-server :hello-world-tls-client
$ # Run the server $ # 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 $ # 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
``` ```