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
Trying to run yarn build on Windows fails when trying to spawn /bin/bash (even when running from Git Bash).
$ yarn build
yarn run v1.22.11
$ sucrase-node script/build.ts
Installing benchmark dependencies
> yarn
events.js:377
throw er; // Unhandled 'error' event
^
Error: spawn /bin/bash ENOENT
at Process.ChildProcess._handle.onexit (internal/child_process.js:269:19)
at onErrorNT (internal/child_process.js:467:16)
at processTicksAndRejections (internal/process/task_queues.js:82:21)
Emitted 'error' event on ChildProcess instance at:
at Process.ChildProcess._handle.onexit (internal/child_process.js:275:12)
at onErrorNT (internal/child_process.js:467:16)
at processTicksAndRejections (internal/process/task_queues.js:82:21) {
errno: -4058,
code: 'ENOENT',
syscall: 'spawn /bin/bash',
path: '/bin/bash',
spawnargs: [ '-c', 'yarn' ]
}
Just wondering if supporting development on Windows is a goal or non-goal for the project. I looked in the scripts directory and there seemed to be a lot of Unix-specific stuff.
The text was updated successfully, but these errors were encountered:
Trying to run
yarn build
on Windows fails when trying to spawn/bin/bash
(even when running from Git Bash).Just wondering if supporting development on Windows is a goal or non-goal for the project. I looked in the
scripts
directory and there seemed to be a lot of Unix-specific stuff.The text was updated successfully, but these errors were encountered: