Reduce number of files send for propose_translation
If a single file has changed, all other .pot files are send as well since they have a new timestamp. Check for files that only have a new timestamp and revert their change so that they do not get committed at all. Also, handle Project-Id-Version the same way as the timestamp. Change-Id: I49488d01a7bb9242508ec7d378240449124608de
This commit is contained in:
parent
4784ff631d
commit
a853bed193
@ -59,9 +59,19 @@ fi
|
||||
# Add all changed files to git
|
||||
git add $PROJECT/locale/*
|
||||
|
||||
# Don't send a review if the only things which have changed are the creation
|
||||
# date or comments.
|
||||
if [ `git diff --cached | egrep -v "(POT-Creation-Date|^[\+\-]#|^\+{3}|^\-{3})" | egrep -c "^[\-\+]"` -gt 0 ]
|
||||
# Don't send files where the only things that have changed are the
|
||||
# creation date, the version number or comment lines.
|
||||
for f in `git diff --cached --name-only`
|
||||
do
|
||||
if [ `git diff --cached $f |egrep -v "(POT-Creation-Date|Project-Id-Version|^\+{3}|^\-{3}|^[-+]#)" | egrep -c "^[\-\+]"` -eq 0 ]
|
||||
then
|
||||
git reset -q $f
|
||||
git checkout -- $f
|
||||
fi
|
||||
done
|
||||
|
||||
# Don't send a review if nothing has changed.
|
||||
if [ `git diff --cached |wc -l` -gt 0 ]
|
||||
then
|
||||
# Commit and review
|
||||
git commit -F- <<EOF
|
||||
|
@ -94,9 +94,19 @@ do
|
||||
fi
|
||||
done
|
||||
|
||||
# Don't send a review if the only things which have changed are the creation
|
||||
# date or comments.
|
||||
if [ `git diff --cached | egrep -v "(POT-Creation-Date|^[\+\-]#|^\+{3}|^\-{3})" | egrep -c "^[\-\+]"` -gt 0 ]
|
||||
# Don't send files where the only things which have changed are the
|
||||
# creation date, the version number or comment lines.
|
||||
for f in `git diff --cached --name-only`
|
||||
do
|
||||
if [ `git diff --cached $f |egrep -v "(POT-Creation-Date|Project-Id-Version|^\+{3}|^\-{3}|^[-+]#)" | egrep -c "^[\-\+]"` -eq 0 ]
|
||||
then
|
||||
git reset -q $f
|
||||
git checkout -- $f
|
||||
fi
|
||||
done
|
||||
|
||||
# Don't send a review if nothing has changed.
|
||||
if [ `git diff --cached |wc -l` -gt 0 ]
|
||||
then
|
||||
# Commit and review
|
||||
git commit -F- <<EOF
|
||||
|
Loading…
x
Reference in New Issue
Block a user