2015年10月19日 星期一

[Android] repo sync 的小工具

repo sync 常常會不正常斷線,這個 script 可以不斷自動重試



#!/bin/bash 
while true
do
    if repo sync
      then
       echo "repo sync successfully."
      break
    else
       echo "repo sync failed. retry..."
       repo sync
    fi
done

沒有留言:

張貼留言