From a99bb20310611d1b5caa6e85b9f9e6a6033c418a Mon Sep 17 00:00:00 2001 From: Romain Hunault Date: Fri, 18 Mar 2022 16:41:09 +0000 Subject: [PATCH] Add LFS pull for community build script --- build-community.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/build-community.sh b/build-community.sh index a7baab6..60685ff 100755 --- a/build-community.sh +++ b/build-community.sh @@ -70,6 +70,8 @@ if [ "$LOCAL_MIRROR" = true ]; then if [ $? != 0 ]; then sync_successful=false + else + repo forall -c 'git lfs pull' fi fi @@ -161,6 +163,8 @@ for branch in ${BRANCH_NAME//,/ }; do if [ $? != 0 ]; then sync_successful=false + else + repo forall -c 'git lfs pull' fi if [ ! -d "vendor/$vendor" ]; then @@ -232,6 +236,8 @@ for branch in ${BRANCH_NAME//,/ }; do if [ $? != 0 ]; then sync_successful=false build_device=false + else + repo forall -c 'git lfs pull' fi fi @@ -242,6 +248,8 @@ for branch in ${BRANCH_NAME//,/ }; do if [ $? != 0 ]; then sync_successful=false build_device=false + else + repo forall -c 'git lfs pull' fi fi -- GitLab