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