]> git.ozlabs.org Git - next-scripts/blob - build_msg
update build error/warning messages
[next-scripts] / build_msg
1 #!/bin/bash
2
3 log=../merge.log
4 [ -f merge.log ] && log=merge.log
5 control=../real_control
6 [ -f real_control ] && control=real_control
7
8 branch=$(grep '^Merging ' $log | tail -1 | sed 's/^Merging //')
9 branch=${branch#quilt/}
10 branch=${branch%%/*}
11
12 contact=$(sed -n "/     $branch /s/     .*$//p" $control)
13 greeting=${contact%% *}
14 [ "${contact%,*}" = "${contact}" ] || greeting="all"
15
16 sylpheed --compose "mailto:$contact?Cc=linux-next@vger.kernel.org,%20linux-kernel@vger.kernel.org&Subject=linux-next: build failure after merge of $branch tree&Body=Hi $greeting,%0A\
17 %0A\
18 After merging the $branch tree, today's linux-next build ()%0A\
19 failed like this:"