We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To prevent issues like #19 we should make sure we get at 200 response for each repo in github.tsv.
For now we can use this script:
#!/bin/bash while read url; do curl -s -o /dev/null -I -w "%{http_code}" $url echo " $url" sleep .2 done < github.tsv
It'll show output like this:
200 https://github.com/berkmancenter/amber_apache 200 https://github.com/berkmancenter/amber_common 200 https://github.com/berkmancenter/amber_drupal ...
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To prevent issues like #19 we should make sure we get at 200 response for each repo in github.tsv.
For now we can use this script:
It'll show output like this:
The text was updated successfully, but these errors were encountered: