aube fails to use shim for 'pnpm' inside of a script #1186
|
Replies: 1 comment
|
Thanks for the report — confirmed. PR #1187 restores the activated shim directory for user package scripts while keeping the internal recursion protection intact, and adds a regression test for Until the fix is released, invoking the local binary directly (for example, AI-assisted — Tool: Codex; model: OpenAI/GPT-5; version: unavailable. |
Thanks for the report — confirmed.
aube activatecorrectly added the shim directory to the shell PATH, but aube then removed it from its own process PATH to prevent internal runtime-probe recursion.aube runinherited that sanitized PATH when spawning package scripts, sopnpmwas no longer resolvable there.PR #1187 restores the activated shim directory for user package scripts while keeping the internal recursion protection intact, and adds a regression test for
pnpm --versioninside anaube runscript. CI is in progress: #1187Until the fix is released, invoking the local binary directly (for example,
oxlint ...) avoids the missingpnpmshim becausenode_modules/.binis already added to…