| Message ID | 20260803140131.1542251-1-richard.purdie@linuxfoundation.org |
|---|---|
| State | New |
| Headers | show |
| Series | [yocto-autobuilder-helper] shared-repo-unpack: Drop confusing unused variable | expand |
diff --git a/scripts/shared-repo-unpack b/scripts/shared-repo-unpack index 797dec6..d1089cc 100755 --- a/scripts/shared-repo-unpack +++ b/scripts/shared-repo-unpack @@ -54,8 +54,6 @@ with open(layerjson) as f: utils.filterrepojson(repos, args.target) -bitbake_setup = False - targetsubdir = args.abworkdir + "/repos" needrepos_baseddirs = [r.split('/')[0] for r in needrepos] for repo in sorted(repos.keys()):
This must be a leftover from previous code and is confusing since we always use bitbake-setup. Remove it. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> --- scripts/shared-repo-unpack | 2 -- 1 file changed, 2 deletions(-)