summaryrefslogtreecommitdiffstats
path: root/urpm/download.pm
diff options
context:
space:
mode:
Diffstat (limited to 'urpm/download.pm')
-rw-r--r--urpm/download.pm4
1 files changed, 1 insertions, 3 deletions
diff --git a/urpm/download.pm b/urpm/download.pm
index 22720cfc..2a60a4eb 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -4,7 +4,6 @@ package urpm::download;
use strict;
use urpm::msg;
-use urpm::cfg;
use urpm::util;
use Cwd;
use Exporter;
@@ -192,10 +191,9 @@ sub propagate_sync_callback {
sub sync_file {
my $options = shift;
foreach (@_) {
- my ($in) = m!^(?:removable[^:]*:/|file:/)(/.*)!;
propagate_sync_callback($options, 'start', $_);
require urpm::util;
- urpm::util::copy($in || $_, ref($options) ? $options->{dir} : $options)
+ urpm::util::copy($_, ref($options) ? $options->{dir} : $options)
or die N("copy failed");
propagate_sync_callback($options, 'end', $_);
}