blob: c79ba04d5e106f652f9f965b057d587c13b4025c [file] [log] [blame]
#!/bin/bash
git show --name-only --pretty=format: $1 | grep values/strings.xml | while read file; do
python $ANDROID_BUILD_TOP/frameworks/base/tools/stringslint/stringslint.py <(git show $1:$file) <(git show $1^:$file)
done