From 9f3601a36cbc4a3c322f48c5ec3487df441105bc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 12 Apr 2005 10:51:38 +0000 Subject: [PATCH] * Argh! The patch downloader was broken due to the renaming of the `--isvalid' flag in nix-store. --- scripts/download-using-manifests.pl.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in index ed3290c181..8c75ab109f 100644 --- a/scripts/download-using-manifests.pl.in +++ b/scripts/download-using-manifests.pl.in @@ -76,7 +76,7 @@ addToQueue $targetPath; sub isValidPath { my $p = shift; - system "@bindir@/nix-store --isvalid '$p' 2> /dev/null"; + system "@bindir@/nix-store --check-validity '$p' 2> /dev/null"; return $? == 0; }