From 8908f480fe131e54e3db683ee653b481c106e2c1 Mon Sep 17 00:00:00 2001 From: Yumeng Xiao Date: Mon, 29 Jun 2026 00:55:00 -0400 Subject: [PATCH 1/5] fix(macos): spawn readFilesCommand via posix_spawnp The POSIX path used vfork()+execlp()+exit(0) to run the generated readsCommand script. On macOS this fails ("Failed spawning readFilesCommand", upstream issue #2663) because the script has no shebang and posix_spawn-style exec has no ENOEXEC->/bin/sh fallback; calling exit() in a vfork child is also undefined behavior. Replace with posix_spawnp invoking "