yutannihilation / savvy

A simple R extension interface using Rust
https://yutannihilation.github.io/savvy/guide/
MIT License
72 stars 4 forks source link

Ensure linebreak is LF #207

Closed yutannihilation closed 6 months ago

yutannihilation commented 6 months ago

Even if all the files are LF on local, it seems GitHub ACtions CI checks it out as CRLF on Windows runner, so replace CRLF to LF here just to make sure.

eitsupi commented 6 months ago

Even if all the files are LF on local, it seems GitHub ACtions CI checks it out as CRLF on Windows runner, so replace CRLF to LF here just to make sure.

This is due to a pesky default setting of Git for Windows.

We can set * text=auto eol=lf in the .gitattributes file in the repo. https://docs.github.com/en/get-started/getting-started-with-git/configuring-git-to-handle-line-endings

yutannihilation commented 6 months ago

Oh, thanks for the tip!