Skip to content

Commit 814483e

Browse files
authored
Put -q in the right place for pecl
1 parent bf17bd8 commit 814483e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/compile-extensions-common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function pecl_install() {
3333
if [ $return = 0 ] || [ -f "$(pecl config-get ext_dir)/${extension}.so" ]; then
3434
echo "Extension ${extension} was already installed for PHP ${VERSION}."
3535
elif [ $return = 1 ]; then
36-
pecl install ${extension} | tee ${extension}-install.log
36+
pecl -q install ${extension} | tee ${extension}-install.log
3737
if (tail -1 ${extension}-install.log | grep failed); then
3838
echo "There was an error installing extension ${extension} for PHP ${VERSION}:"
3939
echo "$result"

0 commit comments

Comments
 (0)