1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-30 06:01:00 +01:00

Fix addPath()

This commit is contained in:
Eelco Dolstra 2022-05-11 16:29:17 +02:00
parent 8b5f37ea92
commit feac6d8651
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
4 changed files with 47 additions and 49 deletions

View file

@ -93,6 +93,9 @@ struct SourcePath
bool pathExists() const
{ return accessor.pathExists(path); }
InputAccessor::Stat lstat() const
{ return accessor.lstat(path); }
InputAccessor::DirEntries readDirectory() const
{ return accessor.readDirectory(path); }