10000 Fix merge source and targets in sync.yml · python/python-docs-pt-br@92a95a5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 92a95a5

Browse files
authored
Fix merge source and targets in sync.yml
Root directory files like glossary were not being included
1 parent 93db7e3 commit 92a95a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
run: |
104104
newer_branch=${PYDOC_VERSION%%.*}.$((${PYDOC_VERSION##*.}+1))
105105
git clone --depth 1 --single-branch --branch $newer_branch https://github.com/python/python-docs-pt-br ${newer_branch}-dir
106-
pomerge --from ./${newer_branch}-dir/**/*.po --to ./${{ env.LANGUAGE_DIR }}/**/*.po
106+
pomerge --from ./${newer_branch}-dir/{**/,}*.po --to ./${{ env.LANGUAGE_DIR }}/{**/,}*.po
107107
rm -rf ./${newer_branch}-dir
108108
109109
- name: powrap

0 commit comments

Comments
 (0)
0