aboutsummaryrefslogtreecommitdiff
path: root/run-test-client.sh
diff options
context:
space:
mode:
authorEric Anderson <ejona@google.com>2015-03-22 16:30:00 -0700
committerEric Anderson <ejona@google.com>2015-03-23 09:23:41 -0700
commitbcb3e8cef424e3cecca4255e31545bf3174336ce (patch)
treef9dde4231358737b4a22f9f4210d14ac774dd868 /run-test-client.sh
parentb1201e7c3e17cccaa343a51f5a820e0c71d518d8 (diff)
downloadgrpc-grpc-java-bcb3e8cef424e3cecca4255e31545bf3174336ce.tar.gz
Remove readlink -f in run-test*.sh scripts
readlink -f allows the script to be run via a symlink yet still function. However, OS X doesn't have the -f flag. We don't really care too much about symlinking to the scripts, so just drop readlink -f.
Diffstat (limited to 'run-test-client.sh')
-rwxr-xr-xrun-test-client.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/run-test-client.sh b/run-test-client.sh
index 4f86d3bcd..78e736a1a 100755
--- a/run-test-client.sh
+++ b/run-test-client.sh
@@ -8,6 +8,6 @@ for i in "$@"; do
done
TARGET_ARGS="${TARGET_ARGS:2}"
-cd "$(dirname "$(readlink -f "$0")")"
+cd "$(dirname "$0")"
echo "[INFO] Running: $TARGET ($TARGET_CLASS $TARGET_ARGS)"
./gradlew -PmainClass="$TARGET_CLASS" -PappArgs="[$TARGET_ARGS]" :grpc-integration-testing:execute