#!/bin/bash
echo "================start repo sync===================="
repo sync -j5
while [ $? = 1 ]; do
echo "====================sync failed, re-sync again======="
sleep 3
repo sync -j5
done

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-04-26
  • 2021-08-31
  • 2021-08-04
  • 2022-01-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-09-05
  • 2022-12-23
  • 2021-09-26
  • 2021-05-07
  • 2021-06-29
相关资源
相似解决方案