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
$ npm install -g mermaid ... $ mermaid env: node\r: No such file or directory
This is happening because the mermaid script is DOS-formatted (i.e. has \r\n/CRLF line-endings).
mermaid
\r\n
A simple fix to make sure this never happens again is to use a .gitattributes file like:
.gitattributes
*.js text eol=lf
But the current version on npmjs.org (0.5.7) will still be broken.
A workaround could be to use dos2unix to fix the mermaid script.
dos2unix
The text was updated successfully, but these errors were encountered:
Thx Will release a 0.5.8 then
Sorry, something went wrong.
Fix for issue windows builds as described in #284
9bd140c
@hairyhenderson, I hope the 0.5.8 resoved your issue!
@knsv - Thanks! 0.5.8 fixed it :)
No branches or pull requests
This is happening because the
mermaid
script is DOS-formatted (i.e. has\r\n
/CRLF line-endings).A simple fix to make sure this never happens again is to use a
.gitattributes
file like:But the current version on npmjs.org (0.5.7) will still be broken.
A workaround could be to use
dos2unix
to fix themermaid
script.The text was updated successfully, but these errors were encountered: