RUNME 391 B

12345678910111213141516
  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. PATH=../../Plugin:$PATH
  10. protoc \
  11. Protos/*.proto \
  12. --swift_out=Sources \
  13. --swiftgrpc_out=Sources \
  14. -IProtos