From f10686811053f79b5c60c97a70dde4f638fad840 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 20 Mar 2008 10:16:36 +0000 Subject: * Cleanup. --- scripts/nix-push.in | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/nix-push.in b/scripts/nix-push.in index 137e3112b2..1c910438fd 100644 --- a/scripts/nix-push.in +++ b/scripts/nix-push.in @@ -224,13 +224,14 @@ writeManifest $manifest, \%narFiles, \%patches; sub copyFile { my $src = shift; my $dst = shift; - system("@coreutils@/cp", $src, "$dst.tmp") == 0 or die "cannot copy file"; - rename("$dst.tmp", "$dst") or die "cannot rename file"; + my $tmp = "$dst.tmp.$$"; + system("@coreutils@/cp", $src, $tmp) == 0 or die "cannot copy file"; + rename($tmp, $dst) or die "cannot rename file: $!"; } -# Upload the archives. -print STDERR "uploading archives...\n"; +# Upload/copy the archives. +print STDERR "uploading/copying archives...\n"; sub archiveExists { my $name = shift; @@ -244,9 +245,12 @@ foreach my $narArchive (@narArchives) { my $basename = $1; if ($localCopy) { + # Since nix-push creates $dst atomically, if it exists we + # don't have to copy again. + my $dst = "$localArchivesDir/$basename"; if (! -f "$localArchivesDir/$basename") { print STDERR " $narArchive\n"; - copyFile $narArchive, "$localArchivesDir/$basename"; + copyFile $narArchive, $dst; } } else { -- cgit 1.4.1