From 3472cb944d8374b03e6e78c6fe2cb4deaadde09e Mon Sep 17 00:00:00 2001 From: Andrea Bondavalli Date: Fri, 28 May 2021 17:37:53 +0200 Subject: [PATCH] Fix to uncompress release WebUI tarball in case this exists --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 3873daa..aec193b 100755 --- a/build.sh +++ b/build.sh @@ -36,6 +36,8 @@ if [ ! -f webui.tar.gz ]; then npm install react-modal react-toastify react-router-dom npm install npm run build +else + tar -xzvf webui.tar.gz fi cd ..