Re: [PATCH 11/25] bundle: allow relative URLs in table of contents
From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2022-03-11 13:43:25
From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2022-03-11 13:43:25
On Wed, Feb 23 2022, Derrick Stolee via GitGitGadget wrote:
From: Derrick Stolee <redacted> [...]@@ -460,6 +463,10 @@ static int cmd_bundle_fetch(int argc, const char **argv, const char *prefix) (!info->filter_str || strcasecmp(filter, info->filter_str))) continue; + old_uri = info->uri; + info->uri = relative_url(bundle_uri, info->uri, NULL); + free(old_uri); +
I had it on my TODO to look into how to do this, and hadn't dug yet, it's really pleasing that we have an API to make it this simple.