mirror of https://github.com/RT-Thread/rt-thread
[tools] 修复rttstudio无法导入bsp的问题 (#10290)
This commit is contained in:
parent
be3cfd9c00
commit
2a525e82be
|
@ -1,3 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# File : building.py
|
||||
# This file is part of RT-Thread RTOS
|
||||
|
|
|
@ -320,7 +320,7 @@ def MkDist_Strip(program, BSP_ROOT, RTT_ROOT, env, project_name, project_path=No
|
|||
|
||||
# Output summary
|
||||
if removed_files:
|
||||
print(f"Removed {len(removed_files)} unused source files")
|
||||
print("Removed {} unused source files".format(len(removed_files)))
|
||||
log_file = os.path.join(dist_dir, 'cleanup.log')
|
||||
with open(log_file, 'w') as f:
|
||||
f.write("Removed source files:\n")
|
||||
|
@ -328,13 +328,12 @@ def MkDist_Strip(program, BSP_ROOT, RTT_ROOT, env, project_name, project_path=No
|
|||
if removed_dirs:
|
||||
f.write("\n\nRemoved empty directories:\n")
|
||||
f.write('\n'.join(removed_dirs))
|
||||
print(f"Details have been written to {log_file}")
|
||||
print("Details have been written to {}".format(log_file))
|
||||
else:
|
||||
print("No unused source files found")
|
||||
|
||||
# Make zip package like MkDist
|
||||
if project_path is None:
|
||||
zip_dist(dist_dir, project_name)
|
||||
print(f"Distribution package created: {dist_dir}.zip")
|
||||
|
||||
print("Distribution package created: {}.zip".format(dist_dir))
|
||||
print('=> Distribution stripped successfully')
|
Loading…
Reference in New Issue