Home | History | Annotate | Download | only in acloud
      1 #!/bin/bash
      2 
      3 ## Compiles proto files to .py files
      4 ## Note that proto version 3.0.0 is needed for successful compilation.
      5 protoc -I=internal/proto --python_out=internal/proto internal/proto/internal_config.proto
      6 protoc -I=internal/proto --python_out=internal/proto internal/proto/user_config.proto
      7