Skip to content

Commit

Permalink
fix: add missing echo
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Dec 31, 2024
1 parent 6325e16 commit 06be3c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/sync.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 06be3c5

Please sign in to comment.