diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | urpm/download.pm | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -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", "-") : |