You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you pass a custom PATH to spawn() it is not used, e.g.
import{join}from"path";import{spawn}from"child_process";spawn("tsc",["--version"],{env: {PATH: join(process.cwd(),"node_modules",".bin")}});// Works in Node// Doesn't work in Bun
The text was updated successfully, but these errors were encountered:
When you pass a custom
PATH
tospawn()
it is not used, e.g.The text was updated successfully, but these errors were encountered: