From e3fbbe8fe31e821116aa5270c764aed7712ab021 Mon Sep 17 00:00:00 2001 From: Leah Amelia Chen Date: Tue, 18 Mar 2025 08:33:28 +0100 Subject: [PATCH] ci(test/translations): ignore untranslated entries --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 056151373..037c7bb15 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -697,7 +697,10 @@ jobs: msgcmp "$old_pot" po/com.mitchellh.ghostty.pot --use-untranslated # Compare all other POs to current POT - for f in po/*.po; do msgcmp "$f" po/com.mitchellh.ghostty.pot; done + for f in po/*.po; do + # Ignore untranslated entries + msgcmp --use-untranslated "$f" po/com.mitchellh.ghostty.pot; + done test-pkg-linux: strategy: