Ensure yarn packages are installed when running only LintUI

This commit is contained in:
Bogdan 2023-07-31 08:32:16 +03:00
commit 3b7989b154

View file

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