summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Changes3
-rw-r--r--urpm/download.pm1
2 files changed, 4 insertions, 0 deletions
diff --git a/Changes b/Changes
index dddb5315..e63c204f 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,6 @@
+- library:
+ o force timestamping=off when using wget to avoid conflict with --force-clobber
+
Version 8.129 - 21 January 2023
- library:
diff --git a/urpm/download.pm b/urpm/download.pm
index e09bb854..302ccc4f 100644
--- a/urpm/download.pm
+++ b/urpm/download.pm
@@ -346,6 +346,7 @@ sub sync_wget {
"/usr/bin/wget",
($options->{'limit-rate'} ? "--limit-rate=$options->{'limit-rate'}" : @{[]}),
($options->{resume} ? "--continue" : "--force-clobber"),
+ "--no-timestamping", #- timestamping conflicts with --force-clobber
($options->{proxy} ? set_proxy({ type => "wget", proxy => $options->{proxy} }) : @{[]}),
($options->{retry} ? ('-t', $options->{retry}) : @{[]}),
($options->{callback} ? ("--progress=bar:force", "-o", "-") :