diff options
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py index 3c524464fa..3002e4c2a9 100644 --- a/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py +++ b/bitbake/lib/toaster/bldcontrol/management/commands/checksettings.py | |||
@@ -166,6 +166,8 @@ class Command(NoArgsCommand): | |||
166 | conffilepath, error = subprocess.Popen('bash -c ". '+os.path.join(dirname, ".templateconf")+'; echo \"\$TEMPLATECONF\""', shell=True, stdout=subprocess.PIPE).communicate() | 166 | conffilepath, error = subprocess.Popen('bash -c ". '+os.path.join(dirname, ".templateconf")+'; echo \"\$TEMPLATECONF\""', shell=True, stdout=subprocess.PIPE).communicate() |
167 | conffilepath = os.path.join(conffilepath.strip(), "toasterconf.json") | 167 | conffilepath = os.path.join(conffilepath.strip(), "toasterconf.json") |
168 | candidatefilepath = os.path.join(dirname, conffilepath) | 168 | candidatefilepath = os.path.join(dirname, conffilepath) |
169 | if "toaster_cloned" in candidatefilepath: | ||
170 | continue | ||
169 | if os.path.exists(candidatefilepath): | 171 | if os.path.exists(candidatefilepath): |
170 | config_files.append(candidatefilepath) | 172 | config_files.append(candidatefilepath) |
171 | 173 | ||