We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
优化获取ipa图标速度
The text was updated successfully, but these errors were encountered:
我也遇到同样的问题了,ipa多了之后,不是打开慢,就是打不开。 不过ios-ipa-server配合Jenkins,真的是太方便了打包装包。
Sorry, something went wrong.
来感谢作者,项目非常优秀,目前已经投入使用,另外使用脚本定义了ipa目录只保留五个最新的构建记录,脚本如下:
cat keep-five.sh #!/bin/bash file_path="/media/ipa/" file_name="*.ipa" while true do A=`ls $file_path/$file_name | wc -l` B=`ls -lt $file_path/$file_namt | tail -n 1 | awk '{print $9}'` if [ $A -gt 5 ];then rm -f $file_path/$B else break fi done
非常方便,再次感谢!
修改 itemInfoWithName 方法 注释从 var ipa = new AdmZip(location); (207行) 到 fs.removeSync(tmpOut); (229) iconString 赋值为一个固定值, 速度会快很多.
bumaociyuan
No branches or pull requests
优化获取ipa图标速度
The text was updated successfully, but these errors were encountered: