1#!/bin/bash -e 2cd "$(dirname "$0")" 3BIN="./interop-testing/build/install/grpc-interop-testing/bin/test-client" 4if [[ ! -e "$BIN" ]]; then 5 cat >&2 <<EOF 6Could not find binary. It can be built with: 7./gradlew :grpc-interop-testing:installDist -PskipCodegen=true 8EOF 9 exit 1 10fi 11exec "$BIN" "$@" 12