mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 23:06:16 +02:00
Typo
This commit is contained in:
parent
8a0a55fe12
commit
76c71c015b
1 changed files with 1 additions and 1 deletions
|
@ -756,7 +756,7 @@ struct GitInputScheme : InputScheme
|
||||||
if (nix::pathExists(path.abs()))
|
if (nix::pathExists(path.abs()))
|
||||||
return RestrictedPathError("access to path '%s' is forbidden because it is not under Git control; maybe you should 'git add' it to the repository '%s'?", path, url);
|
return RestrictedPathError("access to path '%s' is forbidden because it is not under Git control; maybe you should 'git add' it to the repository '%s'?", path, url);
|
||||||
else
|
else
|
||||||
return RestrictedPathError("path '%s' does not exist in Git reposity '%s'", path, url);
|
return RestrictedPathError("path '%s' does not exist in Git repository '%s'", path, url);
|
||||||
};
|
};
|
||||||
|
|
||||||
return {makeFSInputAccessor(CanonPath(repoInfo.url), listFiles(repoInfo), std::move(makeNotAllowedError)), input};
|
return {makeFSInputAccessor(CanonPath(repoInfo.url), listFiles(repoInfo), std::move(makeNotAllowedError)), input};
|
||||||
|
|
Loading…
Reference in a new issue