We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Every time I run a script, I get the error:
Internal Error: spawn Unknown system error -8 at ChildProcess.spawn (node:internal/child_process:421:11) at Object.spawn (node:child_process:762:9)
This happens after I updated the operative system to macOS Sequoia 15.0.1.
macOS Sequoia 15.0.1
Possible solutions:
1- Use #!/usr/bin/env ts-node instead of #!node_modules/.bin/ts-node in the ts scripts. (proposed by @cedoor )
#!/usr/bin/env ts-node
#!node_modules/.bin/ts-node
2- Remove the shebang lines and add ts-node to all the scripts like so: "version:bump": "ts-node scripts/version.ts ${0}",. (proposed by @vplasencia)
ts-node
"version:bump": "ts-node scripts/version.ts ${0}",
The text was updated successfully, but these errors were encountered:
fix: update shebang lines in the ts scripts
d82ecbd
re #880
fix: update shebang lines in the ts scripts (#881)
82cdc60
vplasencia
Successfully merging a pull request may close this issue.
Description
Every time I run a script, I get the error:
This happens after I updated the operative system to
macOS Sequoia 15.0.1
.Solutions
Possible solutions:
1- Use
#!/usr/bin/env ts-node
instead of#!node_modules/.bin/ts-node
in the ts scripts. (proposed by @cedoor )2- Remove the shebang lines and add
ts-node
to all the scripts like so:"version:bump": "ts-node scripts/version.ts ${0}",
. (proposed by @vplasencia)The text was updated successfully, but these errors were encountered: