We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 290eaf2 commit ac431a5Copy full SHA for ac431a5
scripts/sync.sh
@@ -101,7 +101,12 @@ function replicate_all {
101
".github"
102
)
103
104
- gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name' | while read -r repo_name; do
+ repos=$(gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name')
105
+ echo "Found repositories:"
106
+ echo $repos
107
+ echo "---"
108
+
109
+ $repos | while read -r repo_name; do
110
# Check if the repository is in the exclusion list
111
for excluded_repo in "${exclusion_list[@]}"; do
112
if [[ "$repo_name" == "$excluded_repo" ]]; then
0 commit comments