diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-04-16 04:37:14 +0000 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@gmail.com> | 2025-04-16 04:38:36 +0000 |
commit | 1289579dd0def36245ade02e4dd3d0bc3c3e3af8 (patch) | |
tree | b553776c0021dac922cbf337635262c91bd71bc4 /scripts | |
parent | 9ac32d6781510b10e86effc5b513266993b132ec (diff) | |
download | meta-virtualization-1289579dd0def36245ade02e4dd3d0bc3c3e3af8.tar.gz |
scripts: add space around assignments
We need spaces around our SRCREV assignements to avoid
QA errors.
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Diffstat (limited to 'scripts')
-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 588a77ae..40c964da 100755 --- a/scripts/oe-go-mod-autogen.py +++ b/scripts/oe-go-mod-autogen.py | |||
@@ -571,7 +571,7 @@ class GoModTool(object): | |||
571 | # SRC_URI += "git://%s;name=%s;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/%s" | 571 | # SRC_URI += "git://%s;name=%s;protocol=https;nobranch=1;destsuffix=${WORKDIR}/${BP}/src/import/vendor.fetch/%s" |
572 | template = """# %s %s | 572 | template = """# %s %s |
573 | # [1] git ls-remote %s %s | 573 | # [1] git ls-remote %s %s |
574 | SRCREV_%s="%s" | 574 | SRCREV_%s = "%s" |
575 | SRC_URI += "git://%s;name=%s;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/%s" | 575 | SRC_URI += "git://%s;name=%s;protocol=https;nobranch=1;destsuffix=${GO_SRCURI_DESTSUFFIX}/vendor.fetch/%s" |
576 | 576 | ||
577 | """ | 577 | """ |