Skip to content

Commit

Permalink
hide output in preloading script
Browse files Browse the repository at this point in the history
  • Loading branch information
emanuelef committed Aug 25, 2024
1 parent c99a3ba commit 511e89f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions scripts/get_repos_data.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ while IFS= read -r repo; do
sleep 600
done <preloaded-repositories.txt

curl -s "http://143.47.226.125:8080/allCommits?repo=helm/helm"
curl -s "http://143.47.226.125:8080/allPRs?repo=helm/helm"
curl -s "http://143.47.226.125:8080/allIssues?repo=helm/helm"
curl -s "http://143.47.226.125:8080/allForks?repo=helm/helm"
curl -s "http://143.47.226.125:8080/allCommits?repo=helm/helm" > /dev/null
curl -s "http://143.47.226.125:8080/allPRs?repo=helm/helm" > /dev/null
curl -s "http://143.47.226.125:8080/allIssues?repo=helm/helm" > /dev/null
curl -s "http://143.47.226.125:8080/allForks?repo=helm/helm" > /dev/null
sleep 600
curl -s "http://143.47.226.125:8080/allCommits?repo=pyenv/pyenv"
curl -s "http://143.47.226.125:8080/allPRs?repo=pyenv/pyenv"
curl -s "http://143.47.226.125:8080/allIssues?repo=pyenv/pyenv"
curl -s "http://143.47.226.125:8080/allForks?repo=pyenv/pyenv"
curl -s "http://143.47.226.125:8080/allCommits?repo=pyenv/pyenv" > /dev/null
curl -s "http://143.47.226.125:8080/allPRs?repo=pyenv/pyenv" > /dev/null
curl -s "http://143.47.226.125:8080/allIssues?repo=pyenv/pyenv" > /dev/null
curl -s "http://143.47.226.125:8080/allForks?repo=pyenv/pyenv" > /dev/null

0 comments on commit 511e89f

Please sign in to comment.