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.
2 parents d271aed + 7feca77 commit bcdd866Copy full SHA for bcdd866
third_party/RUNME.sh
@@ -16,9 +16,9 @@
16
#
17
printf "\033c"
18
read -p "Would you like to download swift-protobuf / grpc [y/N]" CONDITION;
19
-if [ "$CONDITION" == "y" ] ; then
+if [ "$CONDITION" = "y" ] ; then
20
read -p "Use last known stable swift-protobuf - 0.9.903 ? or latest master ? [S/l] " CONDITION;
21
- if [ "$CONDITION" == "l" ] ; then
+ if [ "$CONDITION" = "l" ] ; then
22
git clone https://github.com/apple/swift-protobuf.git
23
else
24
git clone -b 0.9.903 https://github.com/apple/swift-protobuf.git
0 commit comments