Skip to content

Commit a3f291e

Browse files
committed
* 输出easycython进程
1 parent 2ab6d27 commit a3f291e

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# 更新日志
22

3-
## JadeV2.3.1 - 2024-06-18
4-
* 优化获取版本信息的方法
3+
## JadeV2.3.2 - 2024-7-18
4+
* 输出easycython进程
55
---
66

77
<details onclose>
88
<summary>查看更多更新日志</summary>
99

10+
## JadeV2.3.1 - 2024-06-18
11+
* 优化获取版本信息的方法
12+
---
13+
1014
## JadeV2.3.0 - 2024-06-18
1115
* 优化数据库父类方法
1216
---

jade/jade_packing.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,15 +649,15 @@ def build(args):
649649
if len(specify_files) > 0:
650650
if file_name in specify_files:
651651
cmd_str = "{}easycython {}/{}".format(scripts_path, "new_src", file_name)
652-
result = subprocess.run(cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
652+
result = subprocess.run(cmd_str, shell=True)
653653
progressBar.update()
654654
need_to_build_file_list.append(file_name)
655655
else:
656656
pass
657657
else:
658658
cmd_str = "{}easycython {}/{}".format(scripts_path, "new_src", file_name)
659659
need_to_build_file_list.append(file_name)
660-
subprocess.run(cmd_str, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
660+
subprocess.run(cmd_str, shell=True)
661661
progressBar.update()
662662

663663
build_file_list = os.listdir()

0 commit comments

Comments
 (0)