mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-08-17 16:34:44 -05:00
pgadmin4-appbundle-build #112 (macos-arm64) failed with otool-classic unable to open a path that our own logging showed as correct immediately beforehand ("pgAdmin 4 Helper (GPU)"). Rather than work around it blindly (an otool-classic fallback was tried and reverted - unverified, and risks masking a real problem instead of fixing it), capture real evidence the next time this happens: - raw byte dump (od -c) of ${TODO_OBJ} right before otool runs, and again on failure - catches non-ASCII or invisible whitespace that a plain `echo` can't show - ls -la of the exact path and its containing directory on failure - confirms whether the file actually exists at that exact moment (rules out/in a race with something still writing it) - otool's actual stdout/stderr and exit code, instead of letting its own error text be the only signal No fallback behavior - fails loudly (exit 1) with this diagnostic dump so we can tell what's actually happening from the next real buildfarm run instead of speculating further.