Commit 2be82bd5 by sikang

update script

parent e590cae5
#!/usr/bin/env python3
import random
import string
def radomStr():
return ''.join(random.sample('abcdefghijklmnopqrstuvwxyz', random.randint(4,6)))
print(radomStr() + '.' + radomStr() + '.' + radomStr() + '.' + radomStr())
echo "脚本使用帮助"
echo "0、生成随机包名"
echo "1、编译release版本"
echo "2、创建新的签名文件"
echo "3、commit 和 push Base代码"
......@@ -10,7 +11,11 @@ echo "7、为 resGuardApks 目录下的 *_release.apk 打渠道包"
echo -n "请输入指令编号:"
read commod
if (($commod == '1'))
if (($commod == '0'))
then
./pkgname_generator.py
elif (($commod == '1'))
then
./release_builder.sh
......
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