From 0d4cd88379cb23c8dbe1f4ad8b5d7dd8c01530f6 Mon Sep 17 00:00:00 2001 From: Sukchan Lee Date: Fri, 4 Nov 2022 17:55:32 +0900 Subject: [PATCH] Fixed the WebUI installation --- docs/assets/webui/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/assets/webui/install b/docs/assets/webui/install index bb785bd3c..b73b53f43 100644 --- a/docs/assets/webui/install +++ b/docs/assets/webui/install @@ -256,7 +256,7 @@ fi install() { print_status "Download the Open5GS Source Code (v${VERSION})..." if [ -x /usr/bin/curl ]; then - exec_cmd "curl -sLf -o /dev/null 'https://github.com/open5gs/${PACKAGE}/archive/v${VERSION}.tar.gz' | tar zxf -" + 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 -"