Skip to content

Commit

Permalink
Fix: Cocoapods doesn’t like dirs that start with ./
Browse files Browse the repository at this point in the history
I wasted a huge amount of time debugging this madness.
  • Loading branch information
jcanizales committed Jul 11, 2016
1 parent 54e28ad commit 8f525f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/objective-c/auth_sample/AuthTestService.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/objective-c/helloworld/HelloWorld.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/objective-c/route_guide/RouteGuide.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 8f525f9

Please sign in to comment.