Browse Source

Merge pull request #64 from ryanwilson/patch-2

Fix conditional statement for Ubuntu
Tim Burks 8 years ago
parent
commit
bcdd866b3b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      third_party/RUNME.sh

+ 2 - 2
third_party/RUNME.sh

@@ -16,9 +16,9 @@
 #
 printf "\033c"
 read -p "Would you like to download swift-protobuf / grpc [y/N]" CONDITION;
-if [ "$CONDITION" == "y" ] ; then
+if [ "$CONDITION" = "y" ] ; then
     read -p "Use last known stable swift-protobuf - 0.9.903 ? or  latest master ? [S/l]  " CONDITION;
-    if [ "$CONDITION" == "l" ] ; then
+    if [ "$CONDITION" = "l" ] ; then
         git clone https://github.com/apple/swift-protobuf.git
     else
         git clone -b 0.9.903 https://github.com/apple/swift-protobuf.git