Fix connected library manifest error formatting
All checks were successful
Codex Template Compliance / template-compliance (push) Successful in 7s
Build / build-windows (push) Successful in 26m26s

This commit is contained in:
MrSphay
2026-05-16 05:34:30 +02:00
parent bf8a5cfbb6
commit 69c13c1b64

View File

@@ -400,10 +400,11 @@ async fn resolve_manifest(
Err(ErrorKind::InputError(format!( Err(ErrorKind::InputError(format!(
concat!( concat!(
"Could not fetch {MANIFEST_FILE_NAME}. Make sure the file ", "Could not fetch {}. Make sure the file ",
"exists in the repository root or paste the raw manifest URL ", "exists in the repository root or paste the raw manifest URL ",
"directly. Tried: {}" "directly. Tried: {}"
), ),
MANIFEST_FILE_NAME,
errors.join("; ") errors.join("; ")
)) ))
.into()) .into())