diff options
author | Jorge Canizales <jcanizales@google.com> | 2015-07-02 20:18:43 -0700 |
---|---|---|
committer | Jorge Canizales <jcanizales@google.com> | 2015-07-02 20:18:43 -0700 |
commit | 9506819c5013f6a2e8561fc66ebcf86dec174f96 (patch) | |
tree | 5c076ad5259fa31ce76647cd5dc82ab01a63b7aa /gRPC.podspec | |
parent | 05c97690630640ab41df37858ea23ffce870a509 (diff) |
Fix build breakage of moving include/grpc/ into grpc/
Diffstat (limited to 'gRPC.podspec')
-rw-r--r-- | gRPC.podspec | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gRPC.podspec b/gRPC.podspec index 1a4dfd4c9a..138cf96fd0 100644 --- a/gRPC.podspec +++ b/gRPC.podspec @@ -494,9 +494,9 @@ Pod::Spec.new do |s| BAD_TIME="$DIR_TIME/time.h" GOOD_TIME="$DIR_TIME/grpc_time.h" grep -rl "$BAD_TIME" grpc src/core src/objective-c/GRPCClient | xargs sed -i '' -e s@$BAD_TIME@$GOOD_TIME@g - if [ -f "include/$BAD_TIME" ]; + if [ -f "$BAD_TIME" ]; then - mv -f "include/$BAD_TIME" "include/$GOOD_TIME" + mv -f "$BAD_TIME" "$GOOD_TIME" fi DIR_STRING="src/core/support" |