aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/bin/run_gen_code_test.sh
diff options
context:
space:
mode:
authorGravatar Stanley Cheung <stanleycheung@google.com>2015-06-24 11:15:26 -0700
committerGravatar Stanley Cheung <stanleycheung@google.com>2015-06-24 11:15:26 -0700
commit229e8553a6873f832bdd6362efd9e33c8d0534be (patch)
treedbd2c6a17f64799b7aebbe4ba4b661028edd6c1b /src/php/bin/run_gen_code_test.sh
parentc865c318e4df38a43c11d8565b9023ef6875f0e9 (diff)
replace backticks with $()
Diffstat (limited to 'src/php/bin/run_gen_code_test.sh')
-rwxr-xr-xsrc/php/bin/run_gen_code_test.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/php/bin/run_gen_code_test.sh b/src/php/bin/run_gen_code_test.sh
index f8ad9598f4..03a9101a45 100755
--- a/src/php/bin/run_gen_code_test.sh
+++ b/src/php/bin/run_gen_code_test.sh
@@ -32,7 +32,7 @@ set -e
cd $(dirname $0)
source ./determine_extension_dir.sh
export GRPC_TEST_HOST=localhost:7071
-php $extension_dir -d extension=grpc.so `which phpunit` -v --debug --strict \
+php $extension_dir -d extension=grpc.so $(which phpunit) -v --debug --strict \
../tests/generated_code/GeneratedCodeTest.php
-php $extension_dir -d extension=grpc.so `which phpunit` -v --debug --strict \
+php $extension_dir -d extension=grpc.so $(which phpunit) -v --debug --strict \
../tests/generated_code/GeneratedCodeWithCallbackTest.php