diff options
author | Muxi Yan <mxyan@google.com> | 2018-01-16 10:55:00 -0800 |
---|---|---|
committer | Muxi Yan <mxyan@google.com> | 2018-01-16 12:05:17 -0800 |
commit | f3c83bfe3da285be7263920164425f110379b73c (patch) | |
tree | faabf836a7fbc6b0aabe372903c75fa146cfa96c /templates | |
parent | e8f692528aca85b98f6adf8ed1058a5523b32d5c (diff) |
Fix sed error in podspecs on sed 4.4
Diffstat (limited to 'templates')
-rw-r--r-- | templates/gRPC-Core.podspec.template | 2 |
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 |