Commit 1b0be981 authored by wanli's avatar wanli

update

parent 5513e22e
...@@ -67,9 +67,13 @@ class BuildLogsManager(object): ...@@ -67,9 +67,13 @@ class BuildLogsManager(object):
# print("file not found: %s" % target_file) # print("file not found: %s" % target_file)
# break # break
# 打包成EPK文件 try:
epk = EpkApp(appName=dir_format, appDir=dest_dir, appVersion=app.app_version, output=target_dir) # 打包成EPK文件
app_info = epk.pack() epk = EpkApp(appName=dir_format, appDir=dest_dir, appVersion=app.app_version, output=target_dir)
app_info = epk.pack()
except Exception as e:
logger.error(e)
traceback.print_exc()
# 更新数据库对应文件路径 # 更新数据库对应文件路径
for sf in source_files: for sf in source_files:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment