This commit is contained in:
aozhiwei 2019-06-29 12:37:49 +08:00
parent 47441c0bc9
commit 093cc58300

View File

@ -5,17 +5,9 @@ if [ $? -eq 0 ]; then
exit 0
fi
# git branch|grep -q "* dev"
# if [ $? -ne 0 ]; then
# echo 'not dev branch, exit'
# exit 0
# fi
# echo 'no sync protocol to svn'
git branch|grep -q "* master"
if [ $? -eq 0 ]; then
svn update ~/opensource/game2001_proto/resources/
cp -f server/tools/protobuild/cs_*.proto ~/opensource/game2001_proto/resources/
svn commit -m '同步协议' ~/opensource/game2001_proto/resources/
svn update ../client_proto/resources/
cp -f server/tools/protobuild/cs_*.proto ../client_proto/resources/
svn commit -m '同步协议' ../client_proto/resources/
fi