aboutsummaryrefslogtreecommitdiff
path: root/run-test-client.sh
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-07-01 13:20:19 -0700
committerEric Anderson <ejona@google.com>2015-07-01 13:44:28 -0700
commit05f5a4fb3bb21600adbc89c8534f8419e4df9b43 (patch)
tree1f137cd225cd23430f7adaf3ee52a1f805d57ccf /run-test-client.sh
parentaf9fb6de77107d817bf69cdb9e45e235a76dd8bd (diff)
downloadgrpc-grpc-java-05f5a4fb3bb21600adbc89c8534f8419e4df9b43.tar.gz
Suggest -PskipCodegen in run-test-{client,server}
Just helps new users wanting to try things out from thinking they need to deal with compiling our protoc plugin. As seen in #581
Diffstat (limited to 'run-test-client.sh')
-rwxr-xr-xrun-test-client.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/run-test-client.sh b/run-test-client.sh
index 02059f8e5..373d3335a 100755
--- a/run-test-client.sh
+++ b/run-test-client.sh
@@ -1,7 +1,9 @@
#!/bin/bash -e
cd "$(dirname "$0")"
cat >&2 <<EOF
-Gradle is no longer run automatically. Make sure to run './gradlew installDist' or
-'./gradlew :grpc-interop-testing:installDist' after any changes.
+Gradle is no longer run automatically. Make sure to run
+'./gradlew installDist -PskipCodegen=true' or
+'./gradlew :grpc-interop-testing:installDist -PskipCodegen' after any changes.
+-PskipCodegen=true is optional, but requires less setup.
EOF
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-client "$@"