-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
env: node\r: No such file or directory #5
Comments
Hi @taoliujun - What OS are you using and what version of yarn? I'd like to reproduce it first before I convert the file line endings. |
mac osx 11.5 (20G71) yarn 1.22.17 |
Follow the suggestions in yarnpkg/yarn#5480 - establish .editorconfig setting to ensure LF is used by editor - establish .gitattributes setting to ensure LF is used upon checkout Convert existing files to LF via dos2unix.
Hey @taoliujun - Please install 1.0.7 beta and verify that it works for you.
|
…tory Fix #5 - windows line endings break yarn usage
I found an iMac to test on. Fix released in 1.0.7. |
There is a bug show
env: node\r: No such file or directory
when i used below.`
yarn add -D github-readme-to-html
yarn github-readme-to-html
`
Because the file
./node_modules/github-readme-to-html/index.js
with DOS-style newlines. fix it below.`
vim index.js
:se ff=unix
:wq
`
The text was updated successfully, but these errors were encountered: