1234567891011121314 |
- #!/bin/sh
- # 更新本地分支到最新
- # cd $GIT_ROOT/box/box-data/
- # git pull
- # 删除mj-creator旧的文件
- rm -rf $GIT_ROOT/box/box-u3d/from_excel/
- # 导出AllConfig.json
- python $GIT_ROOT/box/box-data/script/exceltolua/excel_to_json_one.py -s $GIT_ROOT/box/box-data -l excel,excel-box -o $GIT_ROOT/box/box-u3d/Assets/LuaFramework/Resources/json/from_excel -t c
- # 导出单个json
- python $GIT_ROOT/box/box-data/script/exceltolua/excel_to_json.py -s $GIT_ROOT/box/box-data/excel -o $GIT_ROOT/box/box-u3d/from_excel -t c
- python $GIT_ROOT/box/box-data/script/exceltolua/excel_to_json.py -s $GIT_ROOT/box/box-data/excel-box -o $GIT_ROOT/box/box-u3d/from_excel -t c
|