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 6325e16 commit 06be3c5Copy full SHA for 06be3c5
scripts/sync.sh
@@ -102,11 +102,11 @@ function replicate_all {
102
)
103
104
repos=$(gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name')
105
+
106
echo "Found repositories:"
107
echo $repos
- echo "---"
108
109
- $repos | while read -r repo_name; do
+ echo $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