diff options
author | Pascal Terjan <pterjan@mageia.org> | 2012-01-22 15:44:46 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2012-01-22 15:44:46 +0000 |
commit | 56a4d2823c34e209aa9f801a39de3b677d7fb0f2 (patch) | |
tree | 1442f35f707b4d28e677e608484ed1a5cb618ac8 /emi | |
parent | 1d97979087cd439f9ca75b615e3e38cb25c20f96 (diff) | |
download | iurt-56a4d2823c34e209aa9f801a39de3b677d7fb0f2.tar iurt-56a4d2823c34e209aa9f801a39de3b677d7fb0f2.tar.gz iurt-56a4d2823c34e209aa9f801a39de3b677d7fb0f2.tar.bz2 iurt-56a4d2823c34e209aa9f801a39de3b677d7fb0f2.tar.xz iurt-56a4d2823c34e209aa9f801a39de3b677d7fb0f2.zip |
Create a new file to mark when a package is finished uploading
Diffstat (limited to 'emi')
-rwxr-xr-x | emi | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -307,6 +307,11 @@ foreach my $target (keys %targets) { foreach my $prefix (keys %is_finisher) { upload_prefix_in_section($prefix, $section, 1); } + + foreach my $prefix (@{$targets{$target}{$section}{'to_upload'}}) { + my $path = $pkg_tree{$prefix}{section}{$section}{path}; + open FOO, ">$done/$path/$prefix.upload" unless -f "$reject/$path/$prefix.youri"; + } } } |