From 8f525f9bc5ff0fcae5a6433a411de533e8c93fc5 Mon Sep 17 00:00:00 2001
From: Jorge Canizales <jcanizales@google.com>
Date: Mon, 11 Jul 2016 14:23:51 -0700
Subject: [PATCH] =?UTF-8?q?Fix:=20Cocoapods=20doesn=E2=80=99t=20like=20dir?=
 =?UTF-8?q?s=20that=20start=20with=20./?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

I wasted a huge amount of time debugging this madness.
---
 examples/objective-c/auth_sample/AuthTestService.podspec | 2 +-
 examples/objective-c/helloworld/HelloWorld.podspec       | 2 +-
 examples/objective-c/route_guide/RouteGuide.podspec      | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples/objective-c/auth_sample/AuthTestService.podspec b/examples/objective-c/auth_sample/AuthTestService.podspec
index d75ee25297..af5ef28946 100644
--- a/examples/objective-c/auth_sample/AuthTestService.podspec
+++ b/examples/objective-c/auth_sample/AuthTestService.podspec
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
   s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14"
 
   # Pods directory corresponding to this app's Podfile, relative to the location of this podspec.
-  pods_root = './Pods'
+  pods_root = 'Pods'
 
   # Path where Cocoapods downloads protoc and the gRPC plugin.
   protoc_dir = "#{pods_root}/!ProtoCompiler"
diff --git a/examples/objective-c/helloworld/HelloWorld.podspec b/examples/objective-c/helloworld/HelloWorld.podspec
index 11222cb232..bce6cd5172 100644
--- a/examples/objective-c/helloworld/HelloWorld.podspec
+++ b/examples/objective-c/helloworld/HelloWorld.podspec
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
   s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14"
 
   # Pods directory corresponding to this app's Podfile, relative to the location of this podspec.
-  pods_root = './Pods'
+  pods_root = 'Pods'
 
   # Path where Cocoapods downloads protoc and the gRPC plugin.
   protoc_dir = "#{pods_root}/!ProtoCompiler"
diff --git a/examples/objective-c/route_guide/RouteGuide.podspec b/examples/objective-c/route_guide/RouteGuide.podspec
index 08e4d16cdf..e213250751 100644
--- a/examples/objective-c/route_guide/RouteGuide.podspec
+++ b/examples/objective-c/route_guide/RouteGuide.podspec
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
   s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14"
 
   # Pods directory corresponding to this app's Podfile, relative to the location of this podspec.
-  pods_root = './Pods'
+  pods_root = 'Pods'
 
   # Path where Cocoapods downloads protoc and the gRPC plugin.
   protoc_dir = "#{pods_root}/!ProtoCompiler"
-- 
GitLab