1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-19 21:46:50 -04:00

Ensure yarn packages are installed when running only LintUI

This commit is contained in:
Bogdan
2023-07-31 08:34:25 +03:00
parent 722c20a5dc
commit d057d15ac7
+3 -4
View File
@@ -392,19 +392,18 @@ then
fi
fi
if [ "$LINT" = "YES" ];
then
if [ -z "$FRONTEND" ];
if [[ "$LINT" = "YES" || "$FRONTEND" = "YES" ]];
then
YarnInstall
fi
if [ "$LINT" = "YES" ];
then
LintUI
fi
if [ "$FRONTEND" = "YES" ];
then
YarnInstall
RunWebpack
fi