diff options
author | Olivier Blin <dev@blino.org> | 2015-11-17 22:28:14 +0100 |
---|---|---|
committer | Olivier Blin <dev@blino.org> | 2015-11-17 22:28:14 +0100 |
commit | 9224244d57c3d7026232b68c63fb488789e8f7c9 (patch) | |
tree | 0b12b18f52320aea1d0f89652bb2555923166d49 /emi | |
parent | 41152e8fd50ece1f26e429110ae6390f94cfc0a2 (diff) | |
download | iurt-9224244d57c3d7026232b68c63fb488789e8f7c9.tar iurt-9224244d57c3d7026232b68c63fb488789e8f7c9.tar.gz iurt-9224244d57c3d7026232b68c63fb488789e8f7c9.tar.bz2 iurt-9224244d57c3d7026232b68c63fb488789e8f7c9.tar.xz iurt-9224244d57c3d7026232b68c63fb488789e8f7c9.zip |
emi: Fix usage of difference2 to really keep src.rpm until all archs are done
difference2 takes array refs as arguments.
Diffstat (limited to 'emi')
-rwxr-xr-x | emi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -331,7 +331,7 @@ sub upload_prefix_in_section { my @arch_list = $arch_list ? @$arch_list : keys %{$config->{bot}}; # If we are here, mandatory arches are done, no need to check them my $mandatory_arch = get_mandatory_arch($config, $target); - foreach my $arch (difference2(@arch_list, $mandatory_arch)) { + foreach my $arch (difference2(\@arch_list, $mandatory_arch)) { next if $pkg_tree{$prefix}{section}{$section}{arch}{$arch}; $all_done = 0; } |