Skip to content

Commit

Permalink
all in one run fix3
Browse files Browse the repository at this point in the history
  • Loading branch information
racicLuka committed Apr 24, 2024
1 parent 365205a commit 5bd19ef
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/sync-weblate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ jobs:
branches_output=$(git branch -r | grep -v "origin/main" | cut -d'/' -f2 | xargs)
echo "new output $branches_output"
declare -a OTHER_BRANCHES=()
while IFS= read -r line; do
OTHER_BRANCHES+=("$line")
while IFS= read -r word; do
OTHER_BRANCHES+=("$word")
done <<< "$branches_output"
echo "branches $OTHER_BRANCHES"
MISSING_COMMITS=()
MISSING_BRANCHES=()
for BRANCH in $OTHER_BRANCHES; do
Expand Down

0 comments on commit 5bd19ef

Please sign in to comment.