1
0
mirror of git://f0xx.org/android_cast synced 2026-07-29 03:38:52 +03:00

Fix rebuild.sh after Docker CI leaves stale app/.cxx paths.

Clear app/.cxx before gradlew clean (Docker uses /opt/android-sdk in CMake
cache on mounted repos). CI now removes .cxx after build; gitignore app/.cxx.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Anton Afanasyeu
2026-06-02 22:19:51 +02:00
parent 4e045f68e6
commit 4e74a92457
3 changed files with 9 additions and 0 deletions

View File

@@ -139,3 +139,6 @@ cat >"${OUT_DIR}/BUILD_INFO.json" <<EOF
EOF
echo "==> Phase: done"
# Mounted-repo Docker runs must not leave /opt/android-sdk paths in app/.cxx on the host.
rm -rf "$ROOT/app/.cxx"