Attempt to fix syntax error

This commit is contained in:
Ben Ramsey
2019-12-03 17:46:51 -08:00
parent cc4b92812e
commit 7bee600f4f
+3 -3
View File
@@ -5,9 +5,9 @@
# ARCH is anything other than "arm32," then it simply executes the commands
# on the local system, rather than in a container.
php_version=${TRAVIS_PHP_VERSION:-$(php -r "echo phpversion();")}
php_version=${php_version%.*}
architecture=${ARCH:-${TRAVIS_CPU_ARCH:-$(uname -m)}}
php_version="${TRAVIS_PHP_VERSION:-$(php -r "echo phpversion();")}"
php_version="${php_version%.*}"
architecture="${ARCH:-${TRAVIS_CPU_ARCH:-$(uname -m)}}"
cmd_proxy=""