Fix to uncompress release WebUI tarball in case this exists

This commit is contained in:
Andrea Bondavalli 2021-05-28 17:37:53 +02:00
parent 185dd36452
commit 3472cb944d

View File

@ -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 ..