summaryrefslogtreecommitdiffstats
path: root/pullrev.sh
diff options
context:
space:
mode:
authorJoe Orton <jorton@redhat.com>2012-05-31 15:01:40 +0100
committerJoe Orton <jorton@redhat.com>2012-05-31 15:01:40 +0100
commitc010dc9a15dbadd5f8bd801727c3414ed3a4a9cc (patch)
tree39b738c39d208e5a3bc3dc96aa7453c8fa88d982 /pullrev.sh
parent969baf89f0c3a2b780ea1665d5ba9bed30854084 (diff)
ignore CHANGES
Diffstat (limited to 'pullrev.sh')
-rwxr-xr-xpullrev.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/pullrev.sh b/pullrev.sh
index 27058da..9968fa3 100755
--- a/pullrev.sh
+++ b/pullrev.sh
@@ -34,7 +34,8 @@ prev=/dev/null
for r in $*; do
echo "+ fetching ${r}"
this=`mktemp /tmp/pullrevXXXXXX`
- svn diff -c ${r} ${repo} | filterdiff --remove-timestamps --addprefix="${prefix}/" > ${this}
+ svn diff -c ${r} ${repo} | filterdiff --remove-timestamps -x 'CHANGES' \
+ --addprefix="${prefix}/" > ${this}
next=`mktemp /tmp/pullrevXXXXXX`
combinediff --quiet ${prev} ${this} > ${next}
rm -f "${this}"