diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-10-05 20:21:49 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2023-11-06 16:21:12 +0000 |
commit | 77d31a83ed212d95fc98ce190da0a632a50c4676 (patch) | |
tree | 6bcddd689ad0c9095abb0aa7f2d5d404aa68cc50 /scripts/oe-go-mod-autogen.py | |
parent | 4c8860080355dddaec2af7eec46e1c059c718851 (diff) | |
download | meta-virtualization-77d31a83ed212d95fc98ce190da0a632a50c4676.tar.gz |
oe-go-mod-autogen: add extra information to duplicate module paths
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'scripts/oe-go-mod-autogen.py')
-rwxr-xr-x | scripts/oe-go-mod-autogen.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-go-mod-autogen.py b/scripts/oe-go-mod-autogen.py index 2970847e..c44c096a 100755 --- a/scripts/oe-go-mod-autogen.py +++ b/scripts/oe-go-mod-autogen.py | |||
@@ -627,7 +627,7 @@ do_compile:prepend() { | |||
627 | if module_to_check == m: | 627 | if module_to_check == m: |
628 | continue | 628 | continue |
629 | if not m.startswith('%s/' % module_to_check): | 629 | if not m.startswith('%s/' % module_to_check): |
630 | logger.warning("%s is sharing repo (%s) with other modules, and it might need a subpath. Please double check" % (module_to_check, repo)) | 630 | logger.warning("%s is sharing repo (%s) with other modules, and it might need a subpath. Please double check: %s and: %s" % (module_to_check, repo, nosubpath_modules,m)) |
631 | continue | 631 | continue |
632 | 632 | ||
633 | # | 633 | # |