* Better error reporting in readmanifest.

* Use force flag in `mv' to prevent silly interactive questions (this
  happens with shared Nix stores).
This commit is contained in:
Eelco Dolstra 2005-02-08 11:40:19 +00:00
parent fbc434ee4c
commit 48ebe4527e
2 changed files with 3 additions and 2 deletions

View File

@ -51,7 +51,7 @@ sub processURL {
my $finalPath = "$stateDir/manifests/$baseName-$hash.nixmanifest";
system("mv '$manifest' '$finalPath'") == 0
system("mv -f '$manifest' '$finalPath'") == 0
or die "cannot move `$manifest' to `$finalPath";
}

View File

@ -35,7 +35,8 @@ sub readManifest {
my $patches = shift;
my $successors = shift;
open MANIFEST, "<$manifest";
open MANIFEST, "<$manifest"
or die "cannot open `$manifest': $!";
my $inside = 0;
my $type;