From 398f011d2deb91d5f0fe07472fb7a2fbf39753f7 Mon Sep 17 00:00:00 2001 From: midoks Date: Wed, 29 Jun 2022 22:48:38 +0800 Subject: [PATCH] Update install.sh --- plugins/php/versions/74/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/php/versions/74/install.sh b/plugins/php/versions/74/install.sh index 7629e4f74..a111ad05a 100755 --- a/plugins/php/versions/74/install.sh +++ b/plugins/php/versions/74/install.sh @@ -57,7 +57,7 @@ fi echo "$sourcePath/php/php${PHP_VER}" if [ ! -d $serverPath/php/${PHP_VER} ];then - cd $sourcePath/php/php${PHP_VER} + cd $sourcePath/php/php${PHP_VER} && make clean ./buildconf --force ./configure \ --prefix=$serverPath/php/${PHP_VER} \ @@ -80,7 +80,7 @@ if [ ! -d $serverPath/php/${PHP_VER} ];then --disable-fileinfo \ $OPTIONS \ --enable-fpm - make && make install && make clean + make && make install && make clean fi #------------------------ install end ------------------------------------# }