1#!/bin/bash -e
2cd "$(dirname "$0")"
3cat >&2 <<EOF
4Gradle is no longer run automatically. Make sure to run
5'./gradlew installDist -PskipCodegen=true' or
6'./gradlew :grpc-interop-testing:installDist -PskipCodegen=true' after any
7changes. -PskipCodegen=true is optional, but requires less setup.
8EOF
9exec ./interop-testing/build/install/grpc-interop-testing/bin/test-client "$@"
10