From 06be3c51b50c5e6d1658b45e6a6223898444071f Mon Sep 17 00:00:00 2001 From: aeneasr <3372410+aeneasr@users.noreply.github.com> Date: Tue, 31 Dec 2024 10:36:26 +0100 Subject: [PATCH] fix: add missing echo --- scripts/sync.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/sync.sh b/scripts/sync.sh index 262e671..f9c1f54 100755 --- a/scripts/sync.sh +++ b/scripts/sync.sh @@ -102,11 +102,11 @@ function replicate_all { ) repos=$(gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name') + echo "Found repositories:" echo $repos - echo "---" - $repos | while read -r repo_name; do + echo $repos | while read -r repo_name; do # Check if the repository is in the exclusion list for excluded_repo in "${exclusion_list[@]}"; do if [[ "$repo_name" == "$excluded_repo" ]]; then