aboutsummaryrefslogtreecommitdiff
path: root/tests.sh
diff options
context:
space:
mode:
authorPaul Yang <TeBoring@users.noreply.github.com>2016-11-08 11:38:34 -0800
committerGitHub <noreply@github.com>2016-11-08 11:38:34 -0800
commit1f2dbc899b634f3236e1923a90683eebed283d52 (patch)
treeff3da4a7614582c48ee6b2964931803ccb30fe89 /tests.sh
parent0d7199edc802299bdba39400c04f119c7db82667 (diff)
downloadprotobuf-1f2dbc899b634f3236e1923a90683eebed283d52.tar.gz
protobuf-1f2dbc899b634f3236e1923a90683eebed283d52.tar.bz2
protobuf-1f2dbc899b634f3236e1923a90683eebed283d52.zip
Implement RepeatedFieldIter for c extension. (#2333)
Diffstat (limited to 'tests.sh')
-rwxr-xr-xtests.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests.sh b/tests.sh
index 1335c06b..7a12f267 100755
--- a/tests.sh
+++ b/tests.sh
@@ -408,7 +408,8 @@ build_php5.6_c() {
build_php5.6_mac() {
# Install PHP
curl -s https://php-osx.liip.ch/install.sh | bash -s 5.6
- export PATH="/usr/local/php5-5.6.25-20160831-101628/bin:$PATH"
+ PHP_FOLDER=`find /usr/local -type d -name "php5-5.6*"` # The folder name may change upon time
+ export PATH="$PHP_FOLDER/bin:$PATH"
# Install phpunit
curl https://phar.phpunit.de/phpunit.phar -L -o phpunit.phar