mirror of
https://github.com/jambonz/speech-utils.git
synced 2025-12-18 19:27:46 +00:00
12 lines
240 B
Bash
Executable File
12 lines
240 B
Bash
Executable File
#!/bin/sh
|
|
|
|
mkdir -p stubs/nuance
|
|
|
|
for FILE in ./protos/nuance/*; do
|
|
grpc_tools_node_protoc \
|
|
--js_out=import_style=commonjs,binary:./stubs/nuance \
|
|
--grpc_out=grpc_js:./stubs/nuance \
|
|
--proto_path=./protos/nuance \
|
|
$FILE
|
|
done
|