mirror of
https://github.com/NixOS/nix
synced 2025-06-29 14:53:16 +02:00
Fix lfs toURL missing argument
This commit is contained in:
parent
d201b2872e
commit
38fb40204f
1 changed files with 2 additions and 0 deletions
|
@ -262,6 +262,8 @@ struct GitInputScheme : InputScheme
|
||||||
if (auto ref = input.getRef()) url.query.insert_or_assign("ref", *ref);
|
if (auto ref = input.getRef()) url.query.insert_or_assign("ref", *ref);
|
||||||
if (getShallowAttr(input))
|
if (getShallowAttr(input))
|
||||||
url.query.insert_or_assign("shallow", "1");
|
url.query.insert_or_assign("shallow", "1");
|
||||||
|
if (getLfsAttr(input))
|
||||||
|
url.query.insert_or_assign("lfs", "1");
|
||||||
if (getSubmodulesAttr(input))
|
if (getSubmodulesAttr(input))
|
||||||
url.query.insert_or_assign("submodules", "1");
|
url.query.insert_or_assign("submodules", "1");
|
||||||
if (maybeGetBoolAttr(input.attrs, "exportIgnore").value_or(false))
|
if (maybeGetBoolAttr(input.attrs, "exportIgnore").value_or(false))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue