diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-12-28 00:22:20 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-12-28 00:22:20 +0000 |
commit | f20d3851fdb1d63939242986d7d7fab1af038c43 (patch) | |
tree | 13088f3033c72aefea2b01fa269cbb42e961e228 | |
parent | 93308271a41748eba98765f9a2f09cbd2aabc23a (diff) | |
download | tip-bot-f20d3851fdb1d63939242986d7d7fab1af038c43.tar.gz tip-bot-f20d3851fdb1d63939242986d7d7fab1af038c43.tar.xz tip-bot-f20d3851fdb1d63939242986d7d7fab1af038c43.zip |
Add tree/* to the filter list
-rwxr-xr-x | filter-branches.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/filter-branches.pl b/filter-branches.pl index d488fce..6ec9795 100755 --- a/filter-branches.pl +++ b/filter-branches.pl @@ -10,5 +10,6 @@ for (<>) { next if (/^rt\//); # Requested by tglx 2009-07-29 next if (/^test\// && !/^test\/(tip-bot)$/); next if (/^tracing\// && !/^tracing\/(core|urgent)$/); + next if (/^tree\//); # For external trees hpa 2010-12-27 print $_, "\n"; } |