We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3e139a commit 763e4c1Copy full SHA for 763e4c1
scripts/sync.sh
@@ -104,12 +104,7 @@ function replicate_all {
104
".github"
105
)
106
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
+ gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name' | while read -r repo_name; do
113
# Check if the repository is in the exclusion list
114
for excluded_repo in "${exclusion_list[@]}"; do
115
if [[ "$repo_name" == "$excluded_repo" ]]; then
0 commit comments