RUNME 367 B

123456789101112131415
  1. #!/bin/sh
  2. #
  3. # Use this script to regenerate the Protocol Buffer and gRPC files
  4. # needed to build the example.
  5. #
  6. # Note that it requires updated protoc, protoc-gen-swift, and
  7. # protoc-gen-swiftgrpc binaries and assumes that protoc-gen-swift
  8. # is installed in $HOME/local/bin.
  9. protoc \
  10. Protos/*.proto \
  11. --swift_out=Sources \
  12. --swiftgrpc_out=Sources \
  13. -IProtos