From 66775e9b3cfd1fbe2e17ba41ddaaef6a15986732 Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Tue, 6 Mar 2018 10:19:56 +0000 Subject: [PATCH] add extra page line for future proofing --- root/defaults/script.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/root/defaults/script.sh b/root/defaults/script.sh index 1e7066a..bc9109c 100644 --- a/root/defaults/script.sh +++ b/root/defaults/script.sh @@ -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}"