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

Ensure yarn packages are installed when running only LintUI

pull/8909/head
Bogdan 2 years ago
parent 722c20a5dc
commit d057d15ac7

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