1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

update readme, refine the title

This commit is contained in:
winlin 2014-03-30 18:58:17 +08:00
parent c76e11477c
commit b95e1cab30
2 changed files with 6 additions and 3 deletions

View file

@ -27,8 +27,11 @@ product_dir=$work_dir
ret=$?; if [[ $ret -ne 0 ]]; then exit $ret; fi
ok_msg "导入脚本成功"
git remote -v|grep code.csdn.net >/dev/null 2>&1
ret=$?; if [[ 0 -ne $ret ]]; then failed_msg "当前分支不是CSDN镜像"; exit 0; fi
for ((;;)); do
git checkout srs.master && git pull
git checkout srs.master && git pull
ret=$?; if [[ 0 -ne $ret ]]; then
failed_msg "更新github分支失败自动重试";
continue