Skip to content

Commit

Permalink
[backend] bs_getbinariesproxy: add forgotten 'view=cpio' parameter
Browse files Browse the repository at this point in the history
It was missing in the new kiwiproduct function.
  • Loading branch information
mlschroe committed Mar 22, 2023
1 parent 821b7aa commit c734b86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backend/bs_getbinariesproxy
Original file line number Diff line number Diff line change
Expand Up @@ -527,13 +527,14 @@ sub getbinaries_kiwiproduct {

# get files not in cache
if (@downloadbins) {
print "downloading: @downloadbins\n";
print "downloading: ".join(' ', map {$_->{'name'}} @downloadbins)."\n";
my $toomany;
if ($downloadsizek * 1024 * 100 > $cachesize) {
manage_cache($cachesize - $downloadsizek * 1024);
}
my %downloadbins = map {$_->{'name'} => $_} @downloadbins;
my @args;
push @args, 'view=cpio';
push @args, "noajax=1" if $cgi->{'noajax'};
push @args, "binary=$_->{'name'}" for @downloadbins;
my $res;
Expand Down

0 comments on commit c734b86

Please sign in to comment.