Subversion Repositories Kolibri OS

Rev

Rev 4358 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4358 Rev 4401
Line 12... Line 12...
12
git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\
12
git log --reverse --grep="cherry picked from commit" origin/master..HEAD |\
13
	grep "cherry picked from commit" |\
13
	grep "cherry picked from commit" |\
14
	sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
14
	sed -e 's/^[[:space:]]*(cherry picked from commit[[:space:]]*//' -e 's/)//' > already_picked
Line 15... Line 15...
15
 
15
 
16
# Grep for commits that were marked as a candidate for the stable tree.
16
# Grep for commits that were marked as a candidate for the stable tree.
17
git log --reverse --pretty=%H -i --grep='^\([[:space:]]*NOTE: .*[Cc]andidate\|CC:.*mesa-stable\)' HEAD..origin/master |\
17
git log --reverse --pretty=%H -i --grep='^\([[:space:]]*NOTE: .*[Cc]andidate.*9\.2\|CC:.*9\.2.*mesa-stable\)' HEAD..origin/master |\
18
while read sha
18
while read sha
19
do
19
do
20
	# Check to see whether the patch is on the ignore list.
20
	# Check to see whether the patch is on the ignore list.
21
	if [ -f bin/.cherry-ignore ] ; then
21
	if [ -f bin/.cherry-ignore ] ; then