build.sh : fix script not run on wget

This commit is contained in:
unknown 2022-11-30 15:58:24 +07:00
parent 982f0775ed
commit d3a9c5aa12
Signed by: minoplhy
GPG Key ID: 90667A59A9908AEC

View File

@ -52,7 +52,8 @@ tar xzf nginx-1.23.2.tar.gz && cd nginx-1.23.2
if [[ -f "/usr/bin/curl" ]]; then
curl https://raw.githubusercontent.com/minoplhy/nginx-noroot/main/configure.sh | bash
elif [[ -f "/usr/bin/wget" ]]; then
wget https://raw.githubusercontent.com/minoplhy/nginx-noroot/main/configure.sh | ./configure.sh
wget https://raw.githubusercontent.com/minoplhy/nginx-noroot/main/configure.sh
./configure.sh
else
echo "Required Dependencies for download configure script doesn't exist"
fi