root/modules/branches/2.3/findunpublished.sh

Revision 2801, 256 bytes (checked in by gregmac, 7 years ago)

A (slow) script to find modules with unpublished changes

  • Property svn:executable set to *
Line 
1 #!/bin/bash
2
3 # Warning: this script is quite slow, as it does SVN log
4 #          on each directory one at a time!
5
6 for i in *; do
7   if [ -d $i ]; then
8     svn log --limit 1 $i | grep -q "Module Publish Script"
9     if [ $? -ne 0 ]; then
10       echo $i
11     fi
12   fi
13 done
Note: See TracBrowser for help on using the browser.