o create configuration directories for m1 and m2 syncs, and preserve the behavior for m1 syncs. we'll start using

this for m2 syncs before the MRSK is complete.



git-svn-id: https://svn.apache.org/repos/asf/maven/archiva/trunk@468130 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2006-10-26 20:54:49 +00:00
parent 78a39f2735
commit 90da8e7205
10 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ my $reportUrl = $configuration->val( "syncopate", "reportUrl" );
if ( defined( $ARGV[0] ) )
{
my $sourceConfiguration = new Config::IniFiles( -file => "conf/$ARGV[0]" . ".conf" );
my $sourceConfiguration = new Config::IniFiles( -file => "conf/m1/$ARGV[0]" . ".conf" );
syncSource( $sourceConfiguration );
}
@ -37,7 +37,7 @@ else
# -----------------------------------------------------------------------------
sub syncSources
{
my @sources = glob( "conf/*.conf" );
my @sources = glob( "conf/m1/*.conf" );
for my $source (@sources)
{