Skip to content

Commit

Permalink
update install
Browse files Browse the repository at this point in the history
  • Loading branch information
jingmian committed Mar 10, 2023
1 parent 9d80040 commit 5586e82
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion services/php/extensions/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ installExtensionFromTgz()
tar -xf ${tgzName}.tgz -C ${extensionName} --strip-components=1
( cd ${extensionName} && phpize && ./configure ${para1} && make ${MC} && make install )

docker-php-ext-enable ${extensionName} $2
docker-php-ext-enable ${extensionName}
}


Expand Down
4 changes: 2 additions & 2 deletions services/php80/extensions/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ isPhpVersionGreaterOrEqual()
installExtensionFromTgz()
{
tgzName=$1
para1=
para1=
extensionName="${tgzName%%-*}"
if [ $2 ]; then
para1=$2
Expand All @@ -69,7 +69,7 @@ installExtensionFromTgz()
tar -xf ${tgzName}.tgz -C ${extensionName} --strip-components=1
( cd ${extensionName} && phpize && ./configure ${para1} && make ${MC} && make install )

docker-php-ext-enable ${extensionName} $2
docker-php-ext-enable ${extensionName}
}


Expand Down

0 comments on commit 5586e82

Please sign in to comment.