Skip to content
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

Use LF line endings in Painless generated files #26822

Merged
merged 2 commits into from
Oct 6, 2017

Commits on Sep 28, 2017

  1. Use LF line endings in Painless generated files

    Right now if you run `gradle regen` on Windows you'll get `CRLF` line
    endings on all the ANTLR generated files because we run
    ```
        ant.fixcrlf(srcdir: outputPath) {
          patternset(includes: 'Painless*.java')
        }
    ```
    
    The docs for fixcrlf say that the default line endings that it
    corrects to is based on the OS:
    https://ant.apache.org/manual/Tasks/fixcrlf.html
    
    This change locks it to `LF`.
    nik9000 committed Sep 28, 2017
    Configuration menu
    Copy the full SHA
    87bae66 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2017

  1. Configuration menu
    Copy the full SHA
    1d99ff5 View commit details
    Browse the repository at this point in the history