r6718 - /scripts/qa/versioncheck2.pl
    dmn at users.alioth.debian.org 
    dmn at users.alioth.debian.org
       
    Thu Aug 16 07:38:25 UTC 2007
    
    
  
Author: dmn
Date: Thu Aug 16 07:38:24 2007
New Revision: 6718
URL: http://svn.debian.org/wsvn/?sc=1&rev=6718
Log:
Fix CPAN cache issue - authors and modules caches were swapped on each cache write
Modified:
    scripts/qa/versioncheck2.pl
Modified: scripts/qa/versioncheck2.pl
URL: http://svn.debian.org/wsvn/scripts/qa/versioncheck2.pl?rev=6718&op=diff
==============================================================================
--- scripts/qa/versioncheck2.pl (original)
+++ scripts/qa/versioncheck2.pl Thu Aug 16 07:38:24 2007
@@ -282,8 +282,8 @@
         }
     }
     close(TMP);
-    to_cache($cpauth, 'cpan_modules');
-    to_cache($cpmod, 'cpan_authors');
+    to_cache($cpauth, 'cpan_authors');
+    to_cache($cpmod, 'cpan_modules');
 }
 
 # RETURNS
    
    
More information about the Pkg-perl-cvs-commits
mailing list