From 39ee6829b29898dd33f16c93e2f961fef9cba170 Mon Sep 17 00:00:00 2001 From: Max Siling Date: Sat, 20 Dec 2025 22:33:08 +0300 Subject: [PATCH] libfetchers: fix error message for bad indirect URL It used to say "GitHub URL ... is invalid", which is wrong and confusing. Change-Id: I89a00aee21a56710d6afdfa0510d4e9c6a6a6964 --- lix/libfetchers/indirect.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lix/libfetchers/indirect.cc b/lix/libfetchers/indirect.cc index c671adc5c..fa9216585 100644 --- a/lix/libfetchers/indirect.cc +++ b/lix/libfetchers/indirect.cc @@ -45,7 +45,7 @@ struct IndirectInputScheme : InputScheme ref = path[1]; rev = Hash::parseAny(path[2], HashType::SHA1); } else - throw BadURL("GitHub URL '%s' is invalid", url.url); + throw BadURL("indirect URL '%s' is invalid", url.url); std::string id = path[0];