Changeset 151

Show
Ignore:
Timestamp:
08/11/09 11:41:44 (2 years ago)
Author:
martijn
Message:

Updated metrics script

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/metric.sh

    r83 r151  
    33ant clean 
    44ant dist 
     5ant -f corelib/build.xml checkstyle 
    56 
    67LOG="$HOME/bridgedb_stats.log"; 
     
    1011echo "$DATE\tsize of bridgedb_xxx.tar.gz\t$VALUE\tbytes" >> $LOG 
    1112 
    12 for i in lib/br*.jar;  
     13for i in dist/*.jar;  
    1314do  
    1415        VALUE=`stat -c"%s" $i`; 
     
    1718done 
    1819 
    19 for i in . corelib bio batchmapper 
     20for i in . corelib bio batchmapper picr webservice 
    2021do 
    2122        VALUE=`find $i -iname "*.java" -exec cat '{}' \; | wc -l`