Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/3b7989b15494fb32600198cb5cc962599eb980d2 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Ensure yarn packages are installed when running only LintUI

pull/3939/head
Bogdan 2 years ago
parent b28efe8ed5
commit 3b7989b154

@ -392,19 +392,18 @@ then
fi
fi
if [ "$LINT" = "YES" ];
if [[ "$LINT" = "YES" || "$FRONTEND" = "YES" ]];
then
if [ -z "$FRONTEND" ];
then
YarnInstall
fi
YarnInstall
fi
if [ "$LINT" = "YES" ];
then
LintUI
fi
if [ "$FRONTEND" = "YES" ];
then
YarnInstall
RunWebpack
fi

Loading…
Cancel
Save