1
0
mirror of synced 2026-04-17 06:48:36 +08:00

🥚 添加实用工具,方便每次发版批量更新依赖版本

This commit is contained in:
yadong.zhang
2019-12-24 19:34:39 +08:00
parent 0700d7ee25
commit e868d43ca3
5 changed files with 81 additions and 2 deletions

20
ja.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# 参考自 hutool 工具
help(){
echo "--------------------------------------------------------------------------"
echo ""
echo "usage: ./ja.sh [updv]"
echo ""
echo "-updv [version num] Update all justauth related versions."
echo ""
echo "--------------------------------------------------------------------------"
}
case "$1" in
'updv')
bin/updVersion.sh $2
;;
*)
help
esac