RUNME 353 B

1234567891011121314
  1. #!/bin/sh
  2. echo "Installing Cocoapod dependencies"
  3. pod install
  4. echo "Compile the protocol buffers"
  5. protoc google/api/*.proto google/cloud/speech/v1beta1/*.proto google/longrunning/*.proto google/protobuf/*.proto google/rpc/*.proto -o speech.out
  6. echo "Opening the project workspace in Xcode"
  7. open Speech.xcworkspace
  8. echo "Now press the run button!"