Skip to content
Snippets Groups Projects
Select Git revision
  • 8bc025a5f7196ff4ffb86d218c69e1fc3ad6cb98
  • test default
2 results

Android.bp

Blame
  • whitespace.sh 180 B
    #!/bin/bash
    
    RESULT=0
    
    for i in "$@"; do
      a="`tail -c 1 "$i"`"
      if [ "$a" != "" ]; then
        echo "$i does not have a trailing newline" 1>&2
        RESULT=-1
      fi
    done
    
    exit $RESULT