You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
376 B
10 lines
376 B
#!/bin/bash -e
|
|
cd "$(dirname "$0")"
|
|
cat >&2 <<EOF
|
|
Gradle is no longer run automatically. Make sure to run
|
|
'./gradlew installDist -PskipCodegen=true' or
|
|
'./gradlew :grpc-interop-testing:installDist -PskipCodegen=true' after any
|
|
changes. -PskipCodegen=true is optional, but requires less setup.
|
|
EOF
|
|
exec ./interop-testing/build/install/grpc-interop-testing/bin/test-client "$@"
|