From 8f525f9bc5ff0fcae5a6433a411de533e8c93fc5 Mon Sep 17 00:00:00 2001 From: Jorge Canizales Date: Mon, 11 Jul 2016 14:23:51 -0700 Subject: Fix: Cocoapods doesn’t like dirs that start with ./ 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(-) (limited to 'examples/objective-c') 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" -- cgit v1.2.3