Author: evgeni Date: 2011-05-14 12:33:48 +0000 (Sat, 14 May 2011) New Revision: 12345
Modified: software/list-inactive-members/get-git-commits.sh Log: don't depend on git directories to be called *.git Modified: software/list-inactive-members/get-git-commits.sh =================================================================== --- software/list-inactive-members/get-git-commits.sh 2011-05-14 12:32:18 UTC (rev 12344) +++ software/list-inactive-members/get-git-commits.sh 2011-05-14 12:33:48 UTC (rev 12345) @@ -12,6 +12,6 @@ REPOBASE=`readlink -f $1` OUT=`readlink -f $2` -for proj in $REPOBASE/*.git; do - cd $proj; $GIT log --date=short --pretty=format:"%ad::%an::%ae" >> $OUT +for proj in $REPOBASE/*; do + [ -d $proj ] && cd $proj; $GIT log --date=short --pretty=format:"%ad::%an::%ae" >> $OUT done _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

