You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
LOCAL_DIR="$( dirname ${BASH_SOURCE} )"
|
|
git show --name-only --pretty=format: $1 | grep values/strings.xml | while read file; do
|
|
python3 $LOCAL_DIR/stringslint.py <(git show $1:$file) <(git show $1^:$file)
|
|
done
|