Automatically sync shell scripts of Android source code

Source: Internet
Author: User

The company's network is too bad, syncCodeThe speed is only 15 kb/s !!!

 

I can't bear to go online and find a shell script:

 

#! /Bin/bash <br/> echo "====== start repo sync ====" <br/> repo sync <br/> while [$? = 1]; DO <br/> echo "===== sync failed, re-Sync again ====== "<br/> sleep 3 <br/> repo sync <br/> done 

 

The script first executes the repo sync command, and then cyclically judges $? If it is 1, execute the repo sync command again until $? = 0. Exit.

$? This variable stores the returned values of the last shell command execution. 0 indicates success, and non-zero indicates failure. It turns out to be so simple... it seems that you have to learn shell when you are free.

 

Let's move on ....

 

If you want to enable it to automatically compile after sync, add two more:

Sources./build/envsetup. Sh

Make

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.