Skip to content

Commit d98e040

Browse files
committed
* 解决Windows下打包由路径引发的bug
1 parent 7b1e269 commit d98e040

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

CONTRIBUTING.md

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

3-
#### JadeV2.2.5 - 2024-05-27
4-
* 优化数据库父类操作,解决异常问题,代码优化
3+
#### JadeV2.2.6 - 2024-06-11
4+
* 解决Windows下打包由路径引发的bug
55
---
66

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

10+
#### JadeV2.2.5 - 2024-05-27
11+
* 优化数据库父类操作,解决异常问题,代码优化
12+
---
13+
14+
1015
#### JadeV2.2.4 - 2024-05-17
1116
* 解决打包出现的日志重复的bug
1217
---

jade/jade_packing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def writeSpec(args):
427427
data_str = data_str + file_path_list_str + ","
428428
else:
429429
file_path = bin_path
430-
file_path_str = ("'{}'".format(file_path))
430+
file_path_str = ("r'{}'".format(file_path))
431431
file_path_list_str = "({},'{}')".format(file_path_str, save_path)
432432
if i == len(extra_path_list) - 1:
433433
data_str = data_str + file_path_list_str + "]"

0 commit comments

Comments
 (0)