From c9a068241bc0f46b74150ca2b7b5710c0d040378 Mon Sep 17 00:00:00 2001 From: midoks Date: Thu, 30 Jun 2022 19:31:17 +0800 Subject: [PATCH] Update all_test.sh --- plugins/php/all_test.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/php/all_test.sh b/plugins/php/all_test.sh index 3a38e8553..04feb077f 100644 --- a/plugins/php/all_test.sh +++ b/plugins/php/all_test.sh @@ -20,19 +20,19 @@ done echo "php${PHP_VER} -- end" - PHP_VER_LIST=(54 55 56 71 72 73 74 80 81) # PHP_VER_LIST=(81) for PHP_VER in ${PHP_VER_LIST[@]}; do echo "php${PHP_VER} -- start" if [ -d /www/server/php/${PHP_VER} ];then cmd_ext=$(ls -l $DIR/versions/$PHP_VER/ |awk '{print $9}') - for ii in cmd_ext + for ii in $cmd_ext do + echo "${ii}" if [ "install.sh" == "$ii" ];then echo '' > /tmp/t.log else - cd $DIR/versions/$PHP_VER && bash $ii install ${PHP_VER} + cd $DIR/versions/$PHP_VER/ && bash $ii install ${PHP_VER} fi done fi