We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f9c7ff commit 3b04257Copy full SHA for 3b04257
third_party/RUNME.sh
@@ -1,5 +1,15 @@
1
#!/bin/sh
2
+printf "\033c"
3
+read -p "Would you like to download and install swift-protobuf / grpc [y/N]" CONDITION;
4
+if [ "$CONDITION" == "y" ] ; then
5
+ git clone https://github.com/apple/swift-protobuf.git
6
+ cd swift-protobuf
7
+ make install
8
+ cd ..
9
+ git clone https://github.com/grpc/grpc.git
10
+ cd grpc
11
+ git submodule update --init
12
13
+fi
14
-git clone -b 0.9.24 https://github.com/apple/swift-protobuf.git
-git clone https://github.com/grpc/grpc.git
15
0 commit comments