Closed iamwired closed 7 years ago
Hi~
I'm already used WIndows 10 64-bit ;) so run tested on Win10 RS1, RS2. unfortunately.. it's works very well in my sys.
but.. how about double quotes? cd "grpc" cd ".."
Hello,
Thanks to this post, I managed to make "grpc_clone.bat" works on my computer.
I just inserted the "call" command in front of the git commands (lines 7 & 9).
...
echo #### git clone
call git clone -b v1.3.x https://github.com/grpc/grpc
cd grpc
call git submodule update --init
cd ..
...
Could you check if this work for you as well and then apply the fix please? Thanks.
Hi,
First, thank you for this project, as building grpc on Windows is a real pain in the butt ;)
Now my problem: No matter what, I cannot make "grpc_clone.bat" works properly on a brand new grpc-windows directory, in an ordinary console windows on Windows 10 64-bit.
The batch process exit right after executing the "git clone -b v1.3.x https://github.com/grpc/grpc" command. The "cd grpc" command and the following ones are not executed:
If I execute them manually, they work great. If I clone "grpc_clone.bat" into a new file, remove all lines until "cd grpc" and run this batch, the cloning process resume correctly and is executed til the end.
I tried to replace all end of line characters with the proper Windows shenanigan (\r\n), but to no avail.
I am lost. I don't see what causes this .bat to stop right after the "git clone ..." line.
Any idea?
P.S. Same problem with a Visual Studio 2015 "Developer Command Prompt", instead of the default console prompt.