[Libreoffice-commits] .: bin/analyse-commits
Michael Meeks
mmeeks at kemper.freedesktop.org
Tue Oct 19 05:02:11 PDT 2010
bin/analyse-commits | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit aa6c231730050d657ae011dbfce2a1a4dc11f55b
Author: Michael Meeks <michael.meeks at novell.com>
Date: Tue Oct 19 13:00:14 2010 +0100
don't warn
diff --git a/bin/analyse-commits b/bin/analyse-commits
index 4de0fec..594f1ac 100755
--- a/bin/analyse-commits
+++ b/bin/analyse-commits
@@ -16,7 +16,7 @@ tmp=`mktemp`
start='2010-09-28'
git log --after=$start --pretty=format:"$format" 2>&1 > $tmp
-for i in clone/*; do (cd $i && git log --after=$start --pretty=format:"$format" 2>/dev/null); done >> $tmp
+for i in clone/*; do (cd $i 2>/dev/null && git log --after=$start --pretty=format:"$format"); done >> $tmp
eval sort $tmp | uniq $uniq | sort -n | nl
echo "$tmp"
More information about the Libreoffice-commits
mailing list