mirror of https://github.com/ARMmbed/mbed-os.git
Copy static files also when zipping
parent
b0f5b3d768
commit
f8abcf4050
|
|
@ -350,9 +350,9 @@ def export_project(src_paths, export_path, target, ide, libraries_paths=None,
|
|||
inc_repos)
|
||||
else:
|
||||
zip_export(zip_proj, name, resource_dict, files, inc_repos)
|
||||
else:
|
||||
for static_file in exporter.static_files:
|
||||
if not exists(join(export_path, basename(static_file))):
|
||||
copyfile(static_file, join(export_path, basename(static_file)))
|
||||
|
||||
for static_file in exporter.static_files:
|
||||
if not exists(join(export_path, basename(static_file))):
|
||||
copyfile(static_file, join(export_path, basename(static_file)))
|
||||
|
||||
return exporter
|
||||
|
|
|
|||
Loading…
Reference in New Issue