From 1642e83d27523866c89757725112abf0c0895267 Mon Sep 17 00:00:00 2001 From: HackerNCoder Date: Thu, 26 Jan 2023 20:53:39 +0100 Subject: [PATCH] attempt to fix es_419 -> es419 --- .woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 7e75d03..cbbfda2 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -11,7 +11,7 @@ pipeline: for file in ./translations-*.po; do file2=$${file%.po} langcc=$${file2#\.\/translations\-} - if [ $langcc="es_419"]; then langcc="es419";fi + if [ "$langcc" = "es_419" ]; then langcc="es419"; fi stats=$(msgfmt --statistics $${file} 2>&1) numdone=$(echo $${stats%* translated*}) echo $stats $numdone