about summary refs log tree commit diff
path: root/perl
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2012-01-03T12·59+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2012-01-03T12·59+0000
commit502d94048ae848eda1fcda2d1e72b339eaa653aa (patch)
tree5cc2bae9908162ccbd6f7134cde80d764bfada63 /perl
parent93b56acb2dd90e106413f201c8025d2ffeba98e0 (diff)
* Ignore missing manifest symlinks.
Diffstat (limited to 'perl')
-rw-r--r--perl/lib/Nix/Manifest.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/perl/lib/Nix/Manifest.pm b/perl/lib/Nix/Manifest.pm
index d1717a0a8e..909604a449 100644
--- a/perl/lib/Nix/Manifest.pm
+++ b/perl/lib/Nix/Manifest.pm
@@ -307,6 +307,7 @@ EOF
     
     for my $manifestLink (glob "$manifestDir/*.nixmanifest") {
         my $manifest = Cwd::abs_path($manifestLink);
+        next unless -f $manifest;
         my $timestamp = lstat($manifest)->mtime;
         $seen{$manifest} = 1;