Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
chenyy0708 committed Dec 18, 2019
1 parent 9ba6824 commit 791f6b4
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions app/UploadToFir.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,8 @@ def uploadtofir():
appversion = sys.argv[3] # app版本号
appbuild = sys.argv[4] # app build号
apitoken = sys.argv[5] # fir token
apklogov1 = sys.argv[6] # 等待上传的APK logo路径
apklogov2 = sys.argv[7] # 等待上传的APK logo路径
apkpathv1 = sys.argv[8] # 等待上传的APK路径
apkpathv2 = sys.argv[9] # 等待上传的APK路径

# mac环境不知为何gradle传参给python字符长度太长导致字符串被切割成两份,破解
apklogo = apklogov1 + " " + apklogov2
apkpath = apkpathv1 + " " + apkpathv2
apklogo = sys.argv[6] # 等待上传的APK logo路径
apkpath = sys.argv[7] # 等待上传的APK logo路径
# 第一步:获取fir上传凭证
print("get fir upload certificate")
icondict = {} # 后面上传图标和apk需要使用的参数,这里保存下来
Expand Down

0 comments on commit 791f6b4

Please sign in to comment.