Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • pull/timer
  • pull/dapewi
  • pull/presets
  • pull/refactor
  • v0.81-playstore
  • v0.8-playstore
7 results

.classpath

Blame
  • Forked from Michael Meier / hawotempapp
    Source project has a limited visibility.
    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