0
点赞
收藏
分享

微信扫一扫

repo sync 断点自动下载脚本

毅会 2023-11-22 阅读 39


#!/bin/bash

repo sync -j4

while [ $? -ne 0 ]
do
echo "======sync failed ,re-sync again======"
sleep 3
repo sync -j4
done


举报

相关推荐

0 条评论