Commit 637a90bb by app

Merge branch 'develop' of http://git.hikcreate.com/hikrn/project/banma_credit into develop

parents da541efd e01053d6
#!/bin/bash #!/bin/bash
git submodule update --init --recursive
git checkout ${branch_name#*/} --recurse-submodules git checkout ${branch_name#*/} --recurse-submodules
git pull git pull
git submodule foreach --recursive 'branch="$(git config -f $toplevel/.gitmodules submodule.$name.branch)"; [ "$branch" = "" ] && git checkout master || git checkout $branch' git submodule foreach --recursive 'branch="$(git config -f $toplevel/.gitmodules submodule.$name.branch)"; [ "$branch" = "" ] && git checkout master || git checkout $branch'
git submodule update --remote --merge git submodule update --remote --merge
npm install
npm run bundle-ios npm run bundle-ios
git push --recurse-submodules=on-demand git submodule foreach --recursive '[ -n "$(git status -s)" ] && git add * && git commit -am "update reactnative static file" || :'
[ -n "$(git status -s)" ] && git commit -am "update directory"
#git push --recurse-submodules=on-demand
git submodule foreach 'git push' && git push
cd ios
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment