From aadadbabd02298a2540191e99b08fb28d1772a06 Mon Sep 17 00:00:00 2001 From: "James D. Forrester" Date: Tue, 25 Aug 2015 10:27:20 -0700 Subject: [PATCH] bin/listRecentCommits.sh: Don't try to loop over OOUI commits Change-Id: Id886445c3277119ec960079ba33109f1bceaf23d --- bin/listRecentCommits.sh | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/bin/listRecentCommits.sh b/bin/listRecentCommits.sh index 3f28b6385c..94173112c4 100755 --- a/bin/listRecentCommits.sh +++ b/bin/listRecentCommits.sh @@ -38,7 +38,6 @@ do then CHANGEHASH=`cut -f1 -d' ' <<< $CHANGE` - # Sub-iterate over lines matching "Update OOjs" (which covers OOjs and OOjs UI) SUBCHANGES=`git log --format=%B -n1 $CHANGEHASH -- | sed -n -e '/New changes/,/^$/p' | tail -n +2 | @@ -47,26 +46,6 @@ do while read -r SUBCHANGE do printf "\t$SUBCHANGE\n" - - if [[ $SUBCHANGE == *"Update OOjs"* ]] - then - cd lib/ve - - SUBCHANGEHASH=`cut -f1 -d' ' <<< $SUBCHANGE` - - SUBSUBCHANGES=`git log --format=%B -n1 $SUBCHANGEHASH -- | - sed -n -e '/New changes/,/^$/p' | - tail -n +2 | - sed -e '$ d' | - grep --color=never -v 'translatewiki'` - - while read -r SUBSUBCHANGE - do - printf "\t\t$SUBSUBCHANGE\n" - done <<< "$SUBSUBCHANGES" - - cd ../.. - fi done <<< "$SUBCHANGES" # Extra new-line between sub-module pulls for clarity