From ece9385dbe09d716571e126ede86f05abc879b23 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Thu, 17 Oct 2019 12:07:47 +0100 Subject: [PATCH] Fix CocoaPods issue on Azure Pipelines (#146) The issue is not reproducible with CocoaPods 1.7.5. The workaround can be removed when CocoaPods 1.8.4 is released and this or later version is available on Azure Pipelines. --- pod.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pod.sh b/pod.sh index 21cdaf99..e1c1053e 100755 --- a/pod.sh +++ b/pod.sh @@ -3,5 +3,7 @@ set -e set -o pipefail -pod repo update +sudo gem uninstall cocoapods +sudo gem install cocoapods -v 1.7.5 +pod setup pod lib lint --verbose