add extra page line for future proofing

This commit is contained in:
sparklyballs 2018-03-06 10:19:56 +00:00 committed by GitHub
parent cc6109ff18
commit d58cd69fb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,7 @@ curl -s "https://api.github.com/users/${REPO_USER}/repos?page=1&per_page=100" |
curl -s "https://api.github.com/users/${REPO_USER}/repos?page=2&per_page=100" | python -c $'import json, sys, os\nfor repo in json.load(sys.stdin): os.system("git clone " + repo["clone_url"])'
curl -s "https://api.github.com/users/${REPO_USER}/repos?page=3&per_page=100" | python -c $'import json, sys, os\nfor repo in json.load(sys.stdin): os.system("git clone " + repo["clone_url"])'
curl -s "https://api.github.com/users/${REPO_USER}/repos?page=4&per_page=100" | python -c $'import json, sys, os\nfor repo in json.load(sys.stdin): os.system("git clone " + repo["clone_url"])'
curl -s "https://api.github.com/users/${REPO_USER}/repos?page=5&per_page=100" | python -c $'import json, sys, os\nfor repo in json.load(sys.stdin): os.system("git clone " + repo["clone_url"])'
# permissions
chown -R abc:abc "${FOLDER_MAKE}"