Deleting all files in 'scripting/javascript/bindings/generated' except '.git' and 'README'.

This commit is contained in:
James Chen 2013-03-10 16:10:16 +08:00
parent fc5f7547a3
commit db943ddb90
1 changed files with 5 additions and 1 deletions

View File

@ -55,6 +55,9 @@ git clean -fdx
git fetch origin
git checkout -B master origin/master
# Delete all directories and files except '.git' and 'README'.
ls -a | grep -E -v ^\[.\]\{1,2\}$ | grep -E -v ^\.git$ | grep -E -v ^README$ | xargs -I{} rm -rf {}
popd
# Exit on error
@ -131,7 +134,8 @@ set -e
# 3. In JSBindings repo, Check out a branch named "autogeneratedbindings" and commit the auto generated bindings to it
git checkout -b "$GENERATED_BRANCH"
git add --verbose README cocos2dx.cpp cocos2dx.hpp cocos2dxapi.js
git add --verbose .
git add --verbose -u .
git commit --verbose -m "$COMMITTAG : autogenerated bindings"
# 4. In JSBindings repo, Push the commit with generated bindings to "master" of the auto generated bindings repository