[ios] Really ignore new lines in meatdata script

Signed-off-by: Yannik Bloscheck <git@yannikbloscheck.com>
This commit is contained in:
Yannik Bloscheck
2025-09-05 18:00:06 +02:00
committed by x7z4w
parent e9aded43fb
commit 93293e7b31

View File

@@ -128,6 +128,8 @@ def check_raw(path, max_length, ignoreEmptyFilesAndNewLines=False):
text = text[:-1]
else:
ok = error(path, "missing new line")
else:
text = text.strip()
cur_length = len(text)
if cur_length > max_length: