Skip to content
  • James Bowden's avatar
    Fix for commit d36a1a81 · 17d36296
    James Bowden authored
    commit d36a1a81 inadvertantly added empty-lines to the end of everyfile,
    rather than just a new line character.
    
    fix this with the following one-liner script:
    
    ```
    for f in $(git whatchanged --no-commit-id --name-only 29216f52..d36a1a81);
        do sed -i '$d' $f;
    done;
    ```
    17d36296
This project is licensed under the Apache License 2.0. Learn more