root/modules/branches/2.10/checklog.sh

Revision 12914, 0.7 kB (checked in by p_lindheimer, 2 years ago)

update some of the publish checking tools

  • Property svn:executable set to *
Line 
1 #!/bin/sh
2 #
3 # Do an svn log in each directory for better visibility since last update
4 #
5 for NAME in `ls`
6 do
7   if [ -d $NAME ]
8   then
9     lastpublish=`svn propget lastpublish $NAME`
10     let lastpublish=$lastpublish+2
11     echo
12     echo ================================== $NAME START =========================================
13     echo SVN LOG: $NAME
14     #svn log --stop-on-copy $NAME
15     echo ----------FILE MODS-----------
16     svn log -v -r $lastpublish:HEAD $NAME | grep -v 'i18n' | grep $NAME
17     echo ----------LOG ENTRIES---------
18     svn log -r $lastpublish:HEAD $NAME
19     echo
20     echo ================================== $NAME STOP ==========================================
21     echo
22   fi
23 done
Note: See TracBrowser for help on using the browser.