blob: a4da7261fcf8999bf483e2a64037dbc2b6976bca [file] [log] [blame]
nathanmittlerffc18f62014-10-28 16:14:27 -07001#!/bin/bash -e
Eric Andersonbcb3e8c2015-03-22 16:30:00 -07002cd "$(dirname "$0")"
Eric Andersonfab303b2018-10-11 13:51:58 -07003BIN="./interop-testing/build/install/grpc-interop-testing/bin/test-server"
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
Eric Anderson86207752015-05-07 10:21:28 -07008EOF
Eric Andersonfab303b2018-10-11 13:51:58 -07009 exit 1
10fi
11exec "$BIN" "$@"