Skip to content

Commit 06be3c5

Browse files
committed
fix: add missing echo
1 parent 6325e16 commit 06be3c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/sync.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ function replicate_all {
102102
)
103103

104104
repos=$(gh repo list ory --visibility public --no-archived --source --json name -L 1000 | jq -r '.[] | .name')
105+
105106
echo "Found repositories:"
106107
echo $repos
107-
echo "---"
108108

109-
$repos | while read -r repo_name; do
109+
echo $repos | while read -r repo_name; do
110110
# Check if the repository is in the exclusion list
111111
for excluded_repo in "${exclusion_list[@]}"; do
112112
if [[ "$repo_name" == "$excluded_repo" ]]; then

0 commit comments

Comments
 (0)