From 989176c56e1996a7df87bb501ad09aed1f3b395d Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Fri, 18 Jul 2008 15:34:46 +0000 Subject: * Allow read-only access to the store (e.g., non-root users on NixOS can do operations like "nix-store -qR " even without the Nix daemon). --- scripts/download-using-manifests.pl.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'scripts/download-using-manifests.pl.in') diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in index 8207aaaa4ec2..c0b822b912e4 100644 --- a/scripts/download-using-manifests.pl.in +++ b/scripts/download-using-manifests.pl.in @@ -8,7 +8,6 @@ use File::Temp qw(tempdir); my $manifestDir = "@localstatedir@/nix/manifests"; my $logFile = "@localstatedir@/log/nix/downloads"; -open LOGFILE, ">>$logFile" or die "cannot open log file $logFile"; # Create a temporary directory. my $tmpDir = tempdir("nix-download.XXXXXX", CLEANUP => 1, TMPDIR => 1) @@ -76,6 +75,8 @@ die unless scalar @ARGV == 2; my $targetPath = $ARGV[1]; +open LOGFILE, ">>$logFile" or die "cannot open log file $logFile"; + my $date = strftime ("%F %H:%M:%S UTC", gmtime (time)); print LOGFILE "$$ get $targetPath $date\n"; -- cgit 1.4.1