* Argh! The patch downloader was broken due to the renaming of the

`--isvalid' flag in nix-store.
This commit is contained in:
Eelco Dolstra 2005-04-12 10:51:38 +00:00
parent f3660b1c8c
commit 9f3601a36c
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}