Meta/ML: customize the name of the maint track when determining what to merge later into it

Junio C Hamano committed Mar 20, 2017 at 13:25 UTC 917f7280c69173b77ffc91dc2c21c0f34c0fadb9
1 file changed +2 -2
ML
+2 -2
@@ -1,13 +1,13 @@
1 #!/bin/sh
2 # Merge later...
3
4 -target=maint
4 +: "${target:=maint}" "${here:=master}"
5
6 # Read from RelNotes and find mergeable topics
7 search_topics () {
8 tmp=/tmp/ML.$$
9 trap 'rm -f "$tmp"' 0
10 - git rev-list --parents --first-parent $target..master >"$tmp"
10 + git rev-list --parents --first-parent $target..$here >"$tmp"
11
12 x40='[0-9a-f]'
13 x40="$x40$x40$x40$x40$x40"