diff options
-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 09a8352..ba1622b 100644 --- a/lib/Youri/Repository/Mandriva_upload.pm +++ b/lib/Youri/Repository/Mandriva_upload.pm @@ -368,8 +368,8 @@ sub _get_section { # debug packages should be found by previous specific version search # NOTE: as above, should/need we search here and add the 'debug_' prefix? # ... probably... as at least mdv-youri-submit-force will process debug packages - if ($package->is_debug()) { - die "FATAL: debug package $name with version $version-$release not found.\n" + if ($package->is_debug() && $self->{_verbose}) { + print "Warning: debug package $name with version $version-$release not found.\n"; } print "Warning: Looking for any section with a package $name of any version\n"; |