forked from lix-project/lix
nix ls: support '/' for the root directory
This commit is contained in:
parent
510bc1735b
commit
06880d7ed8
|
@ -61,6 +61,10 @@ struct MixLs : virtual Args
|
|||
showFile(curPath, relPath);
|
||||
};
|
||||
|
||||
if (path == "/") {
|
||||
path = "";
|
||||
}
|
||||
|
||||
auto st = accessor->stat(path);
|
||||
if (st.type == FSAccessor::Type::tMissing)
|
||||
throw Error(format("path ‘%1%’ does not exist") % path);
|
||||
|
|
Loading…
Reference in a new issue