summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--classes/go-mod-vcs.bbclass3
1 files changed, 2 insertions, 1 deletions
diff --git a/classes/go-mod-vcs.bbclass b/classes/go-mod-vcs.bbclass
index cf583462..5ba6a775 100644
--- a/classes/go-mod-vcs.bbclass
+++ b/classes/go-mod-vcs.bbclass
@@ -301,7 +301,8 @@ python do_create_module_cache() {
301 continue 301 continue
302 302
303 # Fallback: if no go.mod found, use requested path 303 # Fallback: if no go.mod found, use requested path
304 bb.warn(f"No go.mod found for {requested_module} in {vcs_path}, using requested path") 304 # This is normal for some modules (e.g., pure Go stdlib-like packages)
305 bb.note(f"No go.mod found for {requested_module} in {vcs_path}, using requested path")
305 return requested_module, '' 306 return requested_module, ''
306 307
307 canonical_module_path, detected_subdir = detect_canonical_module_path(vcs_path, subdir, module_path) 308 canonical_module_path, detected_subdir = detect_canonical_module_path(vcs_path, subdir, module_path)