From d2488c0f041d770379cbddbc9991808f6e6476df Mon Sep 17 00:00:00 2001 From: midoks Date: Sun, 10 Jul 2022 00:05:32 +0800 Subject: [PATCH] Update common.sh --- plugins/php-apt/versions/common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/php-apt/versions/common.sh b/plugins/php-apt/versions/common.sh index d4a543f2c..b77ccaf2a 100644 --- a/plugins/php-apt/versions/common.sh +++ b/plugins/php-apt/versions/common.sh @@ -27,7 +27,7 @@ FILE_COMMON=${curPath}/common/${extName}.sh if [ "$action" == 'install' ];then if [ -f $FILE ];then - bash ${curPath}/${version}/${extName}.sh install + bash ${curPath}/${version}/${extName}.sh install $version elif [ -f $FILE_COMMON ];then bash ${FILE_COMMON} install ${version} else @@ -39,7 +39,7 @@ fi # apt remove -y php81-php-yar if [ "$action" == 'uninstall' ];then if [ -f $FILE ];then - bash ${curPath}/${version}/${extName}.sh uninstall + bash ${curPath}/${version}/${extName}.sh uninstall $version elif [ -f $FILE_COMMON ];then bash ${FILE_COMMON} uninstall ${version} else