diff options
author | Florent Villard <warly@mandriva.com> | 2006-08-06 17:42:38 +0000 |
---|---|---|
committer | Florent Villard <warly@mandriva.com> | 2006-08-06 17:42:38 +0000 |
commit | 76b8db075aae22436f0779948a66f7221eb39432 (patch) | |
tree | faeaeb276185959810ef21d91dea1f2cd1db9e3f /lib/Youri/Repository | |
parent | 9478d85440450c4db3cbffa649b6782586644c22 (diff) | |
download | mga-youri-core-76b8db075aae22436f0779948a66f7221eb39432.tar mga-youri-core-76b8db075aae22436f0779948a66f7221eb39432.tar.gz mga-youri-core-76b8db075aae22436f0779948a66f7221eb39432.tar.bz2 mga-youri-core-76b8db075aae22436f0779948a66f7221eb39432.tar.xz mga-youri-core-76b8db075aae22436f0779948a66f7221eb39432.zip |
remove prefix when checking the file name for SVN
Diffstat (limited to 'lib/Youri/Repository')
-rw-r--r-- | lib/Youri/Repository/Mandriva_upload.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Youri/Repository/Mandriva_upload.pm b/lib/Youri/Repository/Mandriva_upload.pm index 53ced5b..e334f39 100644 --- a/lib/Youri/Repository/Mandriva_upload.pm +++ b/lib/Youri/Repository/Mandriva_upload.pm @@ -33,7 +33,7 @@ sub _init { install_root => '', test => 0, # test mode verbose => 0, # verbose mode - queue => '' + queue => '', @_ ); @@ -44,7 +44,7 @@ sub _init { } } print "Initializing repository for @{$self->{_arch}}\n"; - foreach my $v ('queue', 'noarch', 'install_root', 'upload_root', 'verbose') { + foreach my $v ('svn', 'queue', 'noarch', 'install_root', 'upload_root', 'verbose') { $self->{"_$v"} = $options{$v} } $self |