Skip to content

Commit 22e1e4a

Browse files
committed
modified: scripts/bash/build/build.github.orgs.bash
modified: scripts/bash/build/build.github.topics.bash modified: scripts/bash/build/build.github.users.bash
1 parent c61df83 commit 22e1e4a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

scripts/bash/build/build.github.orgs.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,9 +175,9 @@ then
175175
printf "%s\\n" "Downloading GitHub $ONAME repositories information: "
176176
if [[ "$OAUT" != "" ]] # see $RDR/conf/GAUTH file for information
177177
then
178-
curl -u "$OAUT" "https://api.github.com/orgs/$ORG/repos?per_page=15000" > repos
178+
curl -u "$OAUT" "https://api.github.com/orgs/$ORG/repos" > repos
179179
else
180-
curl "https://api.github.com/orgs/$ORG/repos?per_page=15000" > repos
180+
curl "https://api.github.com/orgs/$ORG/repos" > repos
181181
fi
182182
fi
183183
JARR=($(grep -v JavaScript repos | grep -B 5 Java | grep svn_url | awk -v x=2 '{print $x}' | sed 's/\,//g' | sed 's/\"//g')) # creates array of Java language repositories

scripts/bash/build/build.github.topics.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ then
6363
printf "%s\\n" "Downloading GitHub $TOPNAME repositories information: "
6464
if [[ "$OAUT" != "" ]] # see $RDR/conf/GAUTH file for information
6565
then
66-
curl -u "$OAUT" -H "Accept: application/vnd.github.mercy-preview+json" "https://api.github.com/search/repositories?q=topic:$TOPIC+language:Java&per_page=15000" -o repos
66+
curl -u "$OAUT" -H "Accept: application/vnd.github.mercy-preview+json" "https://api.github.com/search/repositories?q=topic:$TOPIC+language:Java" -o repos
6767
else
68-
curl -H "Accept: application/vnd.github.mercy-preview+json" "https://api.github.com/search/repositories?q=topic:$TOPIC+language:Java&per_page=15000" -o repos
68+
curl -H "Accept: application/vnd.github.mercy-preview+json" "https://api.github.com/search/repositories?q=topic:$TOPIC+language:Java" -o repos
6969
fi
7070
fi
7171
TARR=($(grep -v JavaScript repos | grep -B 5 Java | grep svn_url | awk -v x=2 '{print $x}' | sed 's/\,//g' | sed 's/\"//g' | sed 's/https\:\/\/github.com\///g' | cut -d\/ -f1)) # creates array of Java language repositories

scripts/bash/build/build.github.users.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,9 +176,9 @@ then
176176
printf "%s\\n" "Downloading GitHub $USENAME repositories information: "
177177
if [[ "$OAUT" != "" ]] # see $RDR/conf/GAUTH file for information
178178
then
179-
curl -u "$OAUT" "https://api.github.com/users/$USER/repos?per_page=15000" > repos
179+
curl -u "$OAUT" "https://api.github.com/users/$USER/repos" > repos
180180
else
181-
curl "https://api.github.com/users/$USER/repos?per_page=15000" > repos
181+
curl "https://api.github.com/users/$USER/repos" > repos
182182
fi
183183
fi
184184
JARR=($(grep -v JavaScript repos | grep -B 5 Java | grep svn_url | awk -v x=2 '{print $x}' | sed 's/\,//g' | sed 's/\"//g')) # creates array of Java language repositories

0 commit comments

Comments
 (0)