Re: Trailing whitespace in Maven Core

2014-11-24 Thread Michael Osipov
Am 2014-11-23 um 18:09 schrieb Michael Osipov: Am 2014-11-23 um 16:56 schrieb Hervé BOUTEMY: Le dimanche 23 novembre 2014 15:58:56 Michael Osipov a écrit : Hi folks, while merging my local Git clone of maven.git I have noticed that some trailing whitespace has been added to the repo. I perform

Re: Trailing whitespace in Maven Core

2014-11-23 Thread Michael Osipov
Am 2014-11-23 um 16:56 schrieb Hervé BOUTEMY: Le dimanche 23 novembre 2014 15:58:56 Michael Osipov a écrit : Hi folks, while merging my local Git clone of maven.git I have noticed that some trailing whitespace has been added to the repo. I performed some shell magic: > find . -type f -name '

Re: Trailing whitespace in Maven Core

2014-11-23 Thread Hervé BOUTEMY
Le dimanche 23 novembre 2014 15:58:56 Michael Osipov a écrit : > Hi folks, > > while merging my local Git clone of maven.git I have noticed that some > trailing whitespace has been added to the repo. I performed some shell > > magic: > > find . -type f -name '*.' -exec grep -E -l " +$" {} \; | >

Trailing whitespace in Maven Core

2014-11-23 Thread Michael Osipov
Hi folks, while merging my local Git clone of maven.git I have noticed that some trailing whitespace has been added to the repo. I performed some shell magic: > find . -type f -name '*.' -exec grep -E -l " +$" {} \; | xargs -I{} sed -i -e 's/ \+$//' {} I have pushed the branch 'trailing-wh