libfetchers/git: support ipld://

This commit is contained in:
Max Headroom 2022-06-18 00:28:02 +02:00
parent 9745d517e8
commit 6281f78ce2

View file

@ -256,6 +256,7 @@ struct GitInputScheme : InputScheme
url.scheme != "git+http" && url.scheme != "git+http" &&
url.scheme != "git+https" && url.scheme != "git+https" &&
url.scheme != "git+ssh" && url.scheme != "git+ssh" &&
url.scheme != "git+ipld" &&
url.scheme != "git+file") return {}; url.scheme != "git+file") return {};
auto url2(url); auto url2(url);