2018-03-26 09:38:01 -06:00
|
|
|
#!/bin/bash
|
2018-03-27 16:16:13 -06:00
|
|
|
LOCAL_DIR="$( dirname ${BASH_SOURCE} )"
|
2018-03-26 09:38:01 -06:00
|
|
|
git show --name-only --pretty=format: $1 | grep values/strings.xml | while read file; do
|
2021-01-21 19:06:26 -08:00
|
|
|
python3 $LOCAL_DIR/stringslint.py <(git show $1:$file) <(git show $1^:$file)
|
2018-03-26 09:38:01 -06:00
|
|
|
done
|