# HG changeset patch # User MattD # Date 1246533496 -3600 # Node ID ab5a0930b5c8a92fe76c5d8d1b134398833e469a # Parent 59f8bbf91345d405b6d495d5d0bd35db20839c63 cachefiles.pl - stopped cache from being excessively flattened, which could cause problems. diff -r 59f8bbf91345 -r ab5a0930b5c8 common/tools/cachefiles.pl --- a/common/tools/cachefiles.pl Thu Jul 02 11:50:44 2009 +0100 +++ b/common/tools/cachefiles.pl Thu Jul 02 12:18:16 2009 +0100 @@ -31,7 +31,7 @@ my @args = split(',',$line); my $repo = shift @args; my $master = ""; - if ( $repo =~ m/^(.*\/)((oss|rnd|sfl)\/.*\/)$/i ) + if ( $repo =~ m/^(.*\/)(.*\/(oss|rnd|sfl)\/.*\/)$/i ) { $master = $1; $repo = $2;