Skip to content

Commit 763e4c1

Browse files
committed
fix: remove gh repo list print out
1 parent b3e139a commit 763e4c1

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

scripts/sync.sh

+1-6
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,7 @@ function replicate_all {
104104
".github"
105105
)
106106

107-
repos=$(gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name')
108-
109-
echo "Found repositories:"
110-
echo $repos
111-
112-
echo $repos | while read -r repo_name; do
107+
gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name' | while read -r repo_name; do
113108
# Check if the repository is in the exclusion list
114109
for excluded_repo in "${exclusion_list[@]}"; do
115110
if [[ "$repo_name" == "$excluded_repo" ]]; then

0 commit comments

Comments
 (0)