Home | History | Annotate | Download | only in stringslint
      1 #!/bin/bash
      2 LOCAL_DIR="$( dirname ${BASH_SOURCE} )"
      3 git show --name-only --pretty=format: $1 | grep values/strings.xml | while read file; do
      4     python $LOCAL_DIR/stringslint.py <(git show $1:$file) <(git show $1^:$file)
      5 done
      6