summaryrefslogtreecommitdiffstats
path: root/scripts/oe-setup-layers
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/oe-setup-layers')
-rwxr-xr-xscripts/oe-setup-layers2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/oe-setup-layers b/scripts/oe-setup-layers
index 6fbfefd656..31cb963251 100755
--- a/scripts/oe-setup-layers
+++ b/scripts/oe-setup-layers
@@ -66,7 +66,7 @@ def _do_checkout(args, json):
66 oesetupbuild = None 66 oesetupbuild = None
67 for r_name in repos: 67 for r_name in repos:
68 r_data = repos[r_name] 68 r_data = repos[r_name]
69 repodir = os.path.abspath(os.path.join(args['destdir'], r_data['path'])) 69 repodir = os.path.abspath(os.path.join(args['destdir'], r_data.get('path', r_name)))
70 repodirs.append(repodir) 70 repodirs.append(repodir)
71 71
72 if 'contains_this_file' in r_data.keys(): 72 if 'contains_this_file' in r_data.keys():