diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-04-12T10·51+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2005-04-12T10·51+0000 |
commit | 9f3601a36cbc4a3c322f48c5ec3487df441105bc (patch) | |
tree | 94b4dd577ddb0d752feb379f1230e42ece525bfa /scripts/download-using-manifests.pl.in | |
parent | f3660b1c8cba8e701689c82fc3fcaf3a3b8283da (diff) |
* Argh! The patch downloader was broken due to the renaming of the
`--isvalid' flag in nix-store.
Diffstat (limited to 'scripts/download-using-manifests.pl.in')
-rw-r--r-- | scripts/download-using-manifests.pl.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/download-using-manifests.pl.in b/scripts/download-using-manifests.pl.in index ed3290c18166..8c75ab109fc3 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; } |