| nathanmittler | ffc18f6 | 2014-10-28 16:14:27 -0700 | [diff] [blame] | 1 | #!/bin/bash -e |
| Eric Anderson | bcb3e8c | 2015-03-22 16:30:00 -0700 | [diff] [blame] | 2 | cd "$(dirname "$0")" |
| Eric Anderson | fab303b | 2018-10-11 13:51:58 -0700 | [diff] [blame] | 3 | BIN="./interop-testing/build/install/grpc-interop-testing/bin/test-server" |
| 4 | if [[ ! -e "$BIN" ]]; then |
| 5 | cat >&2 <<EOF |
| 6 | Could not find binary. It can be built with: |
| 7 | ./gradlew :grpc-interop-testing:installDist -PskipCodegen=true |
| Eric Anderson | 8620775 | 2015-05-07 10:21:28 -0700 | [diff] [blame] | 8 | EOF |
| Eric Anderson | fab303b | 2018-10-11 13:51:58 -0700 | [diff] [blame] | 9 | exit 1 |
| 10 | fi |
| 11 | exec "$BIN" "$@" |