X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Fbuild%2Fclient.sh;h=6f23c397af6e39d5a494f2750602888502a8a3b6;hb=5c142a4bab955d2dbe831efd537c2fe52246db13;hp=5b70b604578857fe98626f4d603f92cc7a2f826d;hpb=fb9e6cb075197d54f9a39dc4b0f9c45038e900d5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/build/client.sh b/scripts/build/client.sh index 5b70b6045..6f23c397a 100755 --- a/scripts/build/client.sh +++ b/scripts/build/client.sh @@ -16,6 +16,12 @@ post_build_hook () { rmdir "./src/locale/pending_target/" } +# Previous build failed +if [ ! -f client/src/locale/target/angular_fr_FR.xml ]; then + git checkout -- client/src/locale/target/ + rm -r client/src/locale/pending_target/ +fi + cd client rm -rf ./dist ./compiled @@ -30,8 +36,12 @@ post_build_hook # Don't build other languages if --light arg is provided if [ -z ${1+x} ] || [ "$1" != "--light" ]; then - # Supported languages - languages=("fr_FR" "eu_ES" "ca_ES" "cs_CZ" "eo" "zh_Hant_TW" "de_DE" "es_ES") + if [ ! -z ${1+x} ] && [ "$1" == "--light-fr" ]; then + languages=("fr_FR") + else + # Supported languages + languages=("fr_FR" "pt_BR" "sv_SE" "eu_ES" "ca_ES" "cs_CZ" "eo" "zh_Hant_TW" "de_DE" "es_ES" "oc") + fi for lang in "${languages[@]}"; do # TODO: remove when the project will use runtime translations