mirror of
https://github.com/Readarr/Readarr
synced 2025-12-16 05:12:42 +01:00
Ensure yarn packages are installed when running only LintUI
This commit is contained in:
parent
9ac9bd25c1
commit
263e807de2
1 changed files with 5 additions and 6 deletions
11
build.sh
11
build.sh
|
|
@ -391,19 +391,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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue