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

Fix build breakage of moving include/grpc/ into grpc/

parent 9506819c
No related branches found
No related tags found
No related merge requests found
...@@ -111,9 +111,9 @@ Pod::Spec.new do |s| ...@@ -111,9 +111,9 @@ Pod::Spec.new do |s|
BAD_TIME="$DIR_TIME/time.h" BAD_TIME="$DIR_TIME/time.h"
GOOD_TIME="$DIR_TIME/grpc_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 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 then
mv -f "include/$BAD_TIME" "include/$GOOD_TIME" mv -f "$BAD_TIME" "$GOOD_TIME"
fi fi
DIR_STRING="src/core/support" DIR_STRING="src/core/support"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment