From d3a9c5aa125eedc20c8ec89f6015163468dbe312 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 30 Nov 2022 15:58:24 +0700 Subject: [PATCH] build.sh : fix script not run on wget --- build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build.sh b/build.sh index 7d4293c..f5fe596 100644 --- a/build.sh +++ b/build.sh @@ -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