mirror of https://github.com/ARMmbed/mbed-os.git
Fix incorrect reference to a filetype
parent
3b4a463dce
commit
f1c98938c7
|
@ -170,7 +170,7 @@ def _inner_zip_export(resources, prj_files, inc_repos):
|
||||||
dest = join(target_dir, ".bld", "bldrc")
|
dest = join(target_dir, ".bld", "bldrc")
|
||||||
to_zip.append(FileRef(dest, source))
|
to_zip.append(FileRef(dest, source))
|
||||||
if inc_repos:
|
if inc_repos:
|
||||||
for dest, source in resources.get_file_refs(FileType.REPO_DIRS):
|
for dest, source in resources.get_file_refs(FileType.REPO_DIR):
|
||||||
for root, _, files in walk(source):
|
for root, _, files in walk(source):
|
||||||
for repo_file in files:
|
for repo_file in files:
|
||||||
file_source = join(root, repo_file)
|
file_source = join(root, repo_file)
|
||||||
|
|
Loading…
Reference in New Issue