Fixed the WebUI installation

This commit is contained in:
Sukchan Lee 2022-11-04 17:55:32 +09:00
parent 0a9f2e5c40
commit 0d4cd88379
1 changed files with 1 additions and 1 deletions

View File

@ -256,7 +256,7 @@ fi
install() { install() {
print_status "Download the Open5GS Source Code (v${VERSION})..." print_status "Download the Open5GS Source Code (v${VERSION})..."
if [ -x /usr/bin/curl ]; then 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=$? RC=$?
else else
exec_cmd "wget -qO- /dev/null 'https://github.com/open5gs/${PACKAGE}/archive/v${VERSION}.tar.gz' | tar zxf -" exec_cmd "wget -qO- /dev/null 'https://github.com/open5gs/${PACKAGE}/archive/v${VERSION}.tar.gz' | tar zxf -"