Skip to content

Commit f1c9893

Browse files
committed
Fix incorrect reference to a filetype
1 parent 3b4a463 commit f1c9893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/export/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def _inner_zip_export(resources, prj_files, inc_repos):
170170
dest = join(target_dir, ".bld", "bldrc")
171171
to_zip.append(FileRef(dest, source))
172172
if inc_repos:
173-
for dest, source in resources.get_file_refs(FileType.REPO_DIRS):
173+
for dest, source in resources.get_file_refs(FileType.REPO_DIR):
174174
for root, _, files in walk(source):
175175
for repo_file in files:
176176
file_source = join(root, repo_file)

0 commit comments

Comments
 (0)