Skip to content
Snippets Groups Projects
Commit 229e8553 authored by Stanley Cheung's avatar Stanley Cheung
Browse files

replace backticks with $()

parent c865c318
No related branches found
No related tags found
No related merge requests found
......@@ -29,10 +29,10 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
set -e
default_extension_dir=`php -i | grep extension_dir | sed 's/.*=> //g'`
if command -v brew >/dev/null && [ -d `brew --prefix`/opt/grpc-php ]; then
default_extension_dir=$(php -i | grep extension_dir | sed 's/.*=> //g')
if command -v brew >/dev/null && [ -d $(brew --prefix)/opt/grpc-php ]; then
# homebrew and the grpc-php formula are installed
extension_dir="-d extension_dir="`brew --prefix`/opt/grpc-php
extension_dir="-d extension_dir="$(brew --prefix)/opt/grpc-php
elif [ ! -f $default_extension_dir/grpc.so ]; then
# the grpc extension is not found in the default PHP extension dir
# try the source modules directory
......
......@@ -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
......@@ -33,5 +33,5 @@
set -e
cd $(dirname $0)
source ./determine_extension_dir.sh
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/unit_tests
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment