From 6d22e76112a817948eee3152e65ee876cf1df25b Mon Sep 17 00:00:00 2001 From: Nastassia Makaranka Date: Fri, 26 Jul 2024 19:57:31 +0200 Subject: [PATCH] Add `--allow-warnings` flag to cocoapods distribute script --- scripts/distribute-version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/distribute-version.py b/scripts/distribute-version.py index f5daf9050e2..f3ec4f0d2cb 100644 --- a/scripts/distribute-version.py +++ b/scripts/distribute-version.py @@ -4,7 +4,7 @@ def push_pod(name, max_attempts): for attempt in range(0, max_attempts): - status = subprocess.run('pod repo update && pod trunk push ' + name + '.podspec', shell=True) + status = subprocess.run('pod repo update && pod trunk push ' + name + '.podspec --allow-warnings', shell=True) if status.returncode == 0: return time.sleep(60 * pow(2, attempt))