You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by zo...@apache.org on 2011/03/22 15:52:28 UTC

svn commit: r1084203 - /aries/scripts/list_bundles_in_aries.pl

Author: zoe
Date: Tue Mar 22 14:52:28 2011
New Revision: 1084203

URL: http://svn.apache.org/viewvc?rev=1084203&view=rev
Log:
fix some double counting

Modified:
    aries/scripts/list_bundles_in_aries.pl

Modified: aries/scripts/list_bundles_in_aries.pl
URL: http://svn.apache.org/viewvc/aries/scripts/list_bundles_in_aries.pl?rev=1084203&r1=1084202&r2=1084203&view=diff
==============================================================================
--- aries/scripts/list_bundles_in_aries.pl (original)
+++ aries/scripts/list_bundles_in_aries.pl Tue Mar 22 14:52:28 2011
@@ -39,12 +39,13 @@ foreach $module (@modules) {
       find (\&getbundles, $module);
 
       sub getbundles {
-          if ( /.*org\.apache\.aries.([\w\.]*)-.*\.jar$/i) {
-               push @bundles, $1;
+          if ( /^org\.apache\.aries.([\w\.]*)-.*\.jar$/i) {
+                  push @bundles, $1;
           }
       }
       foreach $bundle (@bundles) {
         print $bundle."\n";
       }
+      print "ModuleEnd\n";
 }