From 95199155362dce5679397976acbdf58f297e10c2 Mon Sep 17 00:00:00 2001 From: past-due <30942300+past-due@users.noreply.github.com> Date: Sat, 8 Jun 2024 17:57:14 -0400 Subject: [PATCH] [GitHub Actions] Tweak crowdin_download_translations --- .github/workflows/crowdin_download_translations.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/crowdin_download_translations.yml b/.github/workflows/crowdin_download_translations.yml index 7bae35fd550..16d02f9e03e 100644 --- a/.github/workflows/crowdin_download_translations.yml +++ b/.github/workflows/crowdin_download_translations.yml @@ -84,13 +84,13 @@ jobs: run: | # 1.) Use msgmerge (with identical settings to WZ's po/CMakeLists.txt) to fix up some potential .po formatting differences # For warzone2100.pot: - find po/ -name '*.po' -type f -maxdepth 1 \ + find po -name '*.po' -type f -maxdepth 1 \ -exec \ - msgmerge '--quiet' '--no-wrap' '--width=1' '--update' '{}' 'po/warzone2100.pot' ';' + msgmerge '--no-wrap' '--width=1' '--output-file={}' '{}' 'po/warzone2100.pot' ';' # For warzone2100_guide.pot: find po/guide -name '*.po' -type f -maxdepth 1 \ -exec \ - msgmerge '--quiet' '--no-wrap' '--width=1' '--update' '{}' 'po/guide/warzone2100_guide.pot' ';' + msgmerge '--no-wrap' '--width=1' '--output-file={}' '{}' 'po/guide/warzone2100_guide.pot' ';' # 2.) Cleanup untranslated .po files # For warzone2100.pot: