diff options
author | Jorge Canizales <jcanizales@google.com> | 2016-07-11 14:23:51 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2016-07-11 14:24:48 -0700 |
commit | 8f525f9bc5ff0fcae5a6433a411de533e8c93fc5 (patch) | |
tree | 57c8497bf9eb0f7149caa5bd2ffff887ffb1924c /examples/objective-c/auth_sample | |
parent | 54e28ad79e7aabccb5ed2d1361f1523d76d6f285 (diff) |
Fix: Cocoapods doesn’t like dirs that start with ./
I wasted a huge amount of time debugging this madness.
Diffstat (limited to 'examples/objective-c/auth_sample')
-rw-r--r-- | examples/objective-c/auth_sample/AuthTestService.podspec | 2 |
1 files changed, 1 insertions, 1 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" |