From 678695776e8975b43e31514c6d6552edd0393e56 Mon Sep 17 00:00:00 2001 From: Siavash Sameni Date: Sun, 12 Apr 2026 16:10:03 +0400 Subject: [PATCH] =?UTF-8?q?fix(build):=20correct=20APK=20output=20path=20?= =?UTF-8?q?=E2=80=94=20target/=20is=20mounted=20from=20cache=20dir?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- scripts/build-tauri-android.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/build-tauri-android.sh b/scripts/build-tauri-android.sh index 0a0e110..3d03418 100755 --- a/scripts/build-tauri-android.sh +++ b/scripts/build-tauri-android.sh @@ -348,7 +348,8 @@ ls -lh "$APK_OUTPUT_DIR/"*.apk 2>/dev/null || echo " (none)" ' # ─── Collect and upload APKs ──────────────────────────────────────────── -APK_OUTPUT="$BASE_DIR/data/source/target/apk-output" +# target/ is mounted from cache, not source +APK_OUTPUT="$BASE_DIR/data/cache/target/apk-output" APK_LIST=$(find "$APK_OUTPUT" -name "wzp-tauri-*.apk" -type f 2>/dev/null | sort) if [ -z "$APK_LIST" ]; then