Ensure yarn packages are installed when running only LintUI

This commit is contained in:
Bogdan 2023-07-31 08:32:16 +03:00
parent b28efe8ed5
commit 3b7989b154
1 changed files with 5 additions and 6 deletions

View File

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