You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
625 B
34 lines
625 B
1 month ago
|
#!/bin/bash
|
||
|
set -x
|
||
|
#!/usr/bin/env python2.7
|
||
|
|
||
|
|
||
|
|
||
|
cd /mGame/AndroidPack/mgame_share
|
||
|
|
||
|
#git fetch
|
||
|
git reset --hard
|
||
|
git clean -f -d
|
||
|
git pull
|
||
|
|
||
|
|
||
|
cd /mGame/AndroidPack/mgame_share/ExcelExport
|
||
|
echo 'start call py'
|
||
|
python ./excelTolua.py
|
||
|
echo 'end call py'
|
||
|
|
||
|
|
||
|
cd /mGame/AndroidPack/mgame_share/protocol
|
||
|
echo 'start call py'
|
||
|
python ./generate_proto_parser.py
|
||
|
python ./export_lua.py
|
||
|
echo 'end call py'
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
cd /mGame/AndroidPack/mgame_cli/tools/jenkins_script
|
||
|
python ./generate_components.py /mGame/AndroidPack/mgame_cli/mGame/Assets/Lua/3rd/entitas/ComponentDefinition /mGame/AndroidPack/mgame_cli/mGame/Assets/Lua/3rd/entitas/Generated
|
||
|
|
||
|
|