libfetchers: allow fetching gitlab refs with >1 commit

Change-Id: I945c4c5512def9eff728bb67fe3c03ae17f99d6d
This commit is contained in:
Linus Heckemann 2024-05-31 21:12:04 +02:00
parent ff08d95420
commit 82de36f77a

View file

@ -322,7 +322,7 @@ struct GitLabInputScheme : GitArchiveInputScheme
readFile(
store->toRealPath(
downloadFile(store, url, "source", false, headers).storePath)));
if (json.is_array() && json.size() == 1 && json[0]["id"] != nullptr) {
if (json.is_array() && json.size() >= 1 && json[0]["id"] != nullptr) {
auto rev = Hash::parseAny(std::string(json[0]["id"]), htSHA1);
debug("HEAD revision for '%s' is %s", url, rev.gitRev());
return rev;