Commit dbcaacc6 authored by nanahira's avatar nanahira

Update run.sh

parent 0488b3c9
Pipeline #35705 failed with stages
in 43 seconds
......@@ -196,12 +196,10 @@ process_repo() {
echo "Finished processing $repo_identifer"
}
set -x
# run for each line in each text in repos/*.txt
for file in repos/*.txt; do
[ -e "$file" ] || continue # 避免 repos 目录为空时报错
while read -r repo_url || [ -n "$file" ]; do
while read -r repo_url; do
process_repo "$repo_url"
done < "$file"
done
......
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