1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-27 02:43:57 +02:00

Re-order frontend build steps

This commit is contained in:
Mark McDowall 2022-09-25 00:36:09 -07:00
parent 3993ca9ebd
commit 97ad6682f7

View File

@ -400,19 +400,15 @@ then
UploadTestArtifacts "net6.0"
fi
if [ "$LINT" = "YES" ];
then
if [ -z "$FRONTEND" ];
then
YarnInstall
fi
LintUI
fi
if [ "$FRONTEND" = "YES" ];
then
YarnInstall
if [ "$LINT" = "YES" ];
then
LintUI
fi
RunWebpack
UploadUIArtifacts
fi