aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates
diff options
context:
space:
mode:
authorGravatar Muxi Yan <mxyan@google.com>2018-01-16 10:55:00 -0800
committerGravatar Muxi Yan <mxyan@google.com>2018-01-16 12:05:17 -0800
commitf3c83bfe3da285be7263920164425f110379b73c (patch)
treefaabf836a7fbc6b0aabe372903c75fa146cfa96c /templates
parente8f692528aca85b98f6adf8ed1058a5523b32d5c (diff)
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