clean-whitespace 190 B

123456
  1. #!/bin/sh
  2. #
  3. # Remove trailing whitespace from Haxe files
  4. # Exclude generated js.html.* for now
  5. find -path ./std/js/html -prune -o -name '*.hx' -print0 | xargs -0 perl -pi -e "s/[ \t]+$//"