build_server.py | ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史 |
build_server.py
@@ -37,8 +37,6 @@ output_file = ps_dict.get("output") logger_debug.info(f"编译: dir - 【{root_dir}】, script - 【{script}】, output - 【{output_file}】 ") output_file_path = os.path.join(root_dir, output_file) if os.path.exists(output_file_path): os.remove(output_file_path) # 进行编译 fscript = f"cd {root_dir} && rm -rf {output_file} && {script} " logger_debug.info(fscript)