aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar Muxi Yan <muxi@users.noreply.github.com>2018-01-17 14:18:17 -0800
committerGravatar GitHub <noreply@github.com>2018-01-17 14:18:17 -0800
commit47fe8507a1905c20a86df09f97c3f972d643dda5 (patch)
treef1e939596e93a198934afc232947f484fecb443d /templates
parent522d270180014b899ef5c3f4cb7d4a543eabc219 (diff)
parentf3c83bfe3da285be7263920164425f110379b73c (diff)
Merge pull request #14031 from muxi/fix-boringssl-sed
Fix sed error in podspecs on sed 4.4
Diffstat (limited to 'templates')
-rw-r--r--templates/gRPC-Core.podspec.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/gRPC-Core.podspec.template b/templates/gRPC-Core.podspec.template
index 9785d150e4..da404e2fef 100644
--- a/templates/gRPC-Core.podspec.template
+++ b/templates/gRPC-Core.podspec.template
@@ -202,6 +202,6 @@
# TODO (mxyan): Instead of this hack, add include path "third_party" to C core's include path?
s.prepare_command = <<-END_OF_COMMAND
- find src/core/ -type f -exec sed -E -i '.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\;
+ find src/core/ -type f -exec sed -E -i'.back' 's;#include "third_party/nanopb/(.*)";#include <nanopb/\\1>;g' {} \\\;
END_OF_COMMAND
end