aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tools/classaudit.pl
diff options
context:
space:
mode:
authorJeff Ames2008-02-25 11:53:21 +0000
committerJeff Ames2008-02-25 11:53:21 +0000
commitcda8b013ec524e083189d906ebaa536c4ee90eff (patch)
tree3490be988abb649810eabad4b29ab27091170b50 /OpenSim/Tools/classaudit.pl
parentI'm the stupidest stupid in the whole world. :) (diff)
downloadopensim-SC_OLD-cda8b013ec524e083189d906ebaa536c4ee90eff.zip
opensim-SC_OLD-cda8b013ec524e083189d906ebaa536c4ee90eff.tar.gz
opensim-SC_OLD-cda8b013ec524e083189d906ebaa536c4ee90eff.tar.bz2
opensim-SC_OLD-cda8b013ec524e083189d906ebaa536c4ee90eff.tar.xz
Updated paths in classaudit script.
Diffstat (limited to 'OpenSim/Tools/classaudit.pl')
-rwxr-xr-xOpenSim/Tools/classaudit.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Tools/classaudit.pl b/OpenSim/Tools/classaudit.pl
index 9c92720..d5d28c7 100755
--- a/OpenSim/Tools/classaudit.pl
+++ b/OpenSim/Tools/classaudit.pl
@@ -37,14 +37,14 @@ use constant CLEAR => "\033[0m";
37our %totals; 37our %totals;
38 38
39 39
40find(\&test, "../OpenSim"); 40find(\&test, "../../OpenSim");
41print Dumper(\%totals); 41print Dumper(\%totals);
42 42
43sub test { 43sub test {
44 my $file = $File::Find::name; 44 my $file = $File::Find::name;
45 my $dir = $File::Find::dir; 45 my $dir = $File::Find::dir;
46 $file =~ s{^../}{}; #strip off prefix 46 $file =~ s{^../../}{}; #strip off prefix
47 $dir =~ s{^../}{}; #strip off prefix 47 $dir =~ s{^../../}{}; #strip off prefix
48 48
49 return if ($file !~ /\.cs$/); 49 return if ($file !~ /\.cs$/);
50 return if ($file =~ /AssemblyInfo\.cs$/); 50 return if ($file =~ /AssemblyInfo\.cs$/);