From 95459f8376143fcf131668ad65dce3805c9e047c Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Sun, 6 Nov 2022 20:11:24 +0900 Subject: [PATCH] [WebUI] Change installation script (#1824) --- docs/assets/webui/install | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/assets/webui/install b/docs/assets/webui/install index b73b53f43..974a329de 100644 --- a/docs/assets/webui/install +++ b/docs/assets/webui/install @@ -231,9 +231,9 @@ done print_status 'Adding the MongoDB signing key to your keyring...' if [ -x /usr/bin/curl ]; then - exec_cmd_nobail "curl -sLf -o /dev/null 'https://www.mongodb.org/static/pgp/server-6.0.asc' | apt-key add -" + exec_cmd_nobail "curl -sLf 'https://www.mongodb.org/static/pgp/server-6.0.asc' | apt-key add -" else - exec_cmd_nobail "wget -qO /dev/null -o /dev/null 'https://www.mongodb.org/static/pgp/server-6.0.asc' | apt-key add -" + exec_cmd_nobail "wget -qO - 'https://www.mongodb.org/static/pgp/server-6.0.asc' | apt-key add -" fi print_status "Creating apt sources list file for the MongoDB repo..." @@ -259,7 +259,7 @@ if [ -x /usr/bin/curl ]; then exec_cmd "curl -sLf 'https://github.com/open5gs/${PACKAGE}/archive/v${VERSION}.tar.gz' | tar zxf -" RC=$? else - exec_cmd "wget -qO- /dev/null 'https://github.com/open5gs/${PACKAGE}/archive/v${VERSION}.tar.gz' | tar zxf -" + exec_cmd "wget -qO - 'https://github.com/open5gs/${PACKAGE}/archive/v${VERSION}.tar.gz' | tar zxf -" RC=$? fi