From 4d24fff5582ad1142fcd581fa9757ee8a213913c Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Sat, 2 Dec 2023 11:49:50 +0100 Subject: [PATCH] Fix sed syntax --- .github/workflows/i18n-consistency-checker.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/i18n-consistency-checker.yaml b/.github/workflows/i18n-consistency-checker.yaml index d85d5cb55..4c309c740 100644 --- a/.github/workflows/i18n-consistency-checker.yaml +++ b/.github/workflows/i18n-consistency-checker.yaml @@ -33,7 +33,7 @@ jobs: #[[ $file =~ "/templates" ]] && continue # if the file is under /templates, skip. consistency check does not work for that yet. if [[ $file =~ "/templates" ]]; then - i18n_filename=$(echo "$file" | sed -E "s_patterns/(2-structured|3-validated)/templates_translation/${{matrix.language}}/templates") + i18n_filename=$(echo "$file" | sed -E "s_patterns/(2-structured|3-validated)/templates_translation/${{matrix.language}}/templates_g") else i18n_filename=$(echo "$file" | sed -E "s_patterns/(2-structured|3-validated)_translation/${{matrix.language}}/patterns_g") fi