From 832cbda0ab514fd814bafc79e44e99ab3f28f0b1 Mon Sep 17 00:00:00 2001 From: Roman Tsisyk Date: Wed, 1 Feb 2023 10:35:33 +0200 Subject: [PATCH] [github] Fix iOS metadata check Signed-off-by: Roman Tsisyk --- tools/python/check_store_metadata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/check_store_metadata.py b/tools/python/check_store_metadata.py index 3d48c79360..cdaabd91c5 100755 --- a/tools/python/check_store_metadata.py +++ b/tools/python/check_store_metadata.py @@ -202,7 +202,7 @@ def check_ios(): target_path = os.path.join(locale_dir, name) if os.path.exists(overlay_path): shutil.copy(overlay_path, target_path) - elif not os.path.exists(target_path) and locale != 'en-US': + elif os.path.exists(english_path) and not os.path.exists(target_path): shutil.copy(english_path, target_path) for locale in glob.glob('iphone/metadata/*/'):