1
0
mirror of synced 2025-11-06 06:20:49 +08:00
Files
JustAuth/ja.sh
yadong.zhang 3e4faa75fe 📝 更新脚本
2021-03-29 10:45:07 +08:00

27 lines
478 B
Bash

#!/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
;;
'pd')
bin/push-dev.sh
;;
'p')
bin/push.sh
;;
*)
help
esac