Skip to content

Commit 1be0d1c

Browse files
committed
[优化说明书]
1 parent 6d42c5e commit 1be0d1c

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,14 @@
11
# shellAutoUpdateIpa
2-
iOS一键自动打包上传蒲公英与app Store
2+
3+
iOS一键自动打包上传蒲公英与App Store
4+
5+
6+
# 使用方法:
7+
8+
1, 下载项目, 把项目中的三个文件 放入与工程相同目录下(autoExport.sh, exportAppstore.plist, exportTest.plist)
9+
2, 再修改当前文件 三个#号开头的配置参数 ###
10+
3, 最后执行这个.sh文件
11+
12+
# 这里只上传蒲公英与AppStore, 如果需要上其他第三平台, 需要修改其他平台的上传方式即可!
13+
14+
# 完成!!!

autoExport.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# 使用方法:
44
# 下载项目, 把项目中的三个文件 放入与工程相同目录下
5-
# 再修改当前文件 三个#号开头的配置参数 ###
5+
# 再修改当前文件 四个#号开头的配置参数 ####
66
# 最后执行这个.sh文件
77

88

@@ -48,16 +48,16 @@ echo "Place enter the number you want to export ? [ 1:app-store 2:debug-ad-hoc
4848
read number
4949
done
5050

51-
####(plist文件名称要与实际文件名与路径称相同)
51+
#(plist文件名称要与实际文件名与路径称相同)
5252
if [ $number == 1 ];then
5353
development_mode=Release
54-
exportOptionsPlistPath=${project_path}/exportConfig/exportAppstore.plist
54+
exportOptionsPlistPath=${project_path}/exportAppstore.plist
5555
elif [ $number == 2 ];then
5656
development_mode=Debug
57-
exportOptionsPlistPath=${project_path}/exportConfig/exportTest.plist
57+
exportOptionsPlistPath=${project_path}/exportTest.plist
5858
else
5959
development_mode=Release
60-
exportOptionsPlistPath=${project_path}/exportConfig/exportTest.plist
60+
exportOptionsPlistPath=${project_path}/exportTest.plist
6161
fi
6262

6363
echo '*** --------- ***'

0 commit comments

Comments
 (0)