mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
* Print a warning if files cannot be found.
svn path=/nixpkgs/trunk/; revision=8476
This commit is contained in:
parent
705e87fe0f
commit
19d0e47320
@ -28,6 +28,11 @@ while (scalar @workset > 0) {
|
||||
|
||||
$doneset{$fn} = 1;
|
||||
|
||||
if (!-e "$fn") {
|
||||
print STDERR "cannot access `$fn': $!\n" if !$!{ENOENT};
|
||||
next;
|
||||
}
|
||||
|
||||
next unless -e "$fn";
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user