Skip to content

Commit

Permalink
Fix building Android TV boxes
Browse files Browse the repository at this point in the history
Fixes #436
  • Loading branch information
petefoth committed Nov 22, 2024
1 parent 00b87c6 commit fbf8323
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/new_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,14 @@ for codename in ${devices//,/ }; do
continue
fi

if [ "$WITH_GMS" = true ]; then
echo ">> [$(date)] Populating vendor/partner_gms-tv/products" | tee -a "$repo_log"
rm -rf "$source_dir/vendor/partner_gms-tv" || true
mkdir -p "$source_dir/vendor/partner_gms-tv/products"
ls "$source_dir/vendor/partner_gms/products/." | tee -a "$repo_log"
cp -r "$source_dir/vendor/partner_gms/products/." "$source_dir/vendor/partner_gms-tv/products/"
fi

if [ "$CALL_GIT_LFS_PULL" = true ]; then
echo ">> [$(date)] Calling git lfs pull" | tee -a "$repo_log"
repo forall -v -c git lfs pull &>> "$repo_log"
Expand Down

0 comments on commit fbf8323

Please sign in to comment.