Skip to content
Snippets Groups Projects
Commit 8f525f9b authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Fix: Cocoapods doesn’t like dirs that start with ./

I wasted a huge amount of time debugging this madness.
parent 54e28ad7
No related branches found
No related tags found
Loading
...@@ -17,7 +17,7 @@ Pod::Spec.new do |s| ...@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14" s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14"
# Pods directory corresponding to this app's Podfile, relative to the location of this podspec. # 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. # Path where Cocoapods downloads protoc and the gRPC plugin.
protoc_dir = "#{pods_root}/!ProtoCompiler" protoc_dir = "#{pods_root}/!ProtoCompiler"
......
...@@ -17,7 +17,7 @@ Pod::Spec.new do |s| ...@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14" s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14"
# Pods directory corresponding to this app's Podfile, relative to the location of this podspec. # 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. # Path where Cocoapods downloads protoc and the gRPC plugin.
protoc_dir = "#{pods_root}/!ProtoCompiler" protoc_dir = "#{pods_root}/!ProtoCompiler"
......
...@@ -17,7 +17,7 @@ Pod::Spec.new do |s| ...@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14" s.dependency "!ProtoCompiler-gRPCPlugin", "~> 0.14"
# Pods directory corresponding to this app's Podfile, relative to the location of this podspec. # 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. # Path where Cocoapods downloads protoc and the gRPC plugin.
protoc_dir = "#{pods_root}/!ProtoCompiler" protoc_dir = "#{pods_root}/!ProtoCompiler"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment