1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-21 23:33:00 +00: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