1 Star 0 Fork 8

Steven.zhao/shell_pack

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
pack.sh 956 Bytes
一键复制 编辑 原始数据 按行查看 历史
TT 提交于 2022-12-17 09:58 . 同步
#!/bin/bash
###
# @Descripttion:
# @version:
# @Author: TT
# @Date: 2022-08-31 09:48:48
# @LastEditors: TT
# @LastEditTime: 2022-11-29 22:50:44
###
# shellcheck disable=SC1091
# shellcheck disable=SC2154
source ./pack_tool.sh
source ./pack_ipa.sh
source ./pack_apk.sh
source ./pack_config.sh
source ./pack_clear_create_tool.sh
# 为了可以执行 sh 文件所有的函数
chmod a+x pack_clear_create_tool.sh pack_tool.sh
echomsg "开始配置参数"
param_count=$#
if [ $param_count == 0 ]; then
normalTip
else
for i in "$@"; do
if [[ $i == "-h" ]]; then
echoHelp
exit
else
funWithParam "$i"
fi
done
fi
configbuildType
echomsg "参数配置完成"
# 最终打包配置结果显示
echoTip
# 清楚缓存
cleanFun
# 构建打包需要配置项
createLib
# 打包
if [ "$pack_os" == 0 ]; then
buidApk
buidIos
elif [ "$pack_os" == 1 ]; then
buidApk
else
buidIos
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Shell
1
https://gitee.com/zhao187/shell_pack.git
git@gitee.com:zhao187/shell_pack.git
zhao187
shell_pack
shell_pack
master

搜索帮助