File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -136,10 +136,10 @@ MYPY_PROTOBUF_VENV=venv_$PY_VER_MYPY_PROTOBUF
136136 find proto/testproto/grpc -name " *.proto" -print0 | xargs -0 " $PROTOC " " ${PROTOC_ARGS[@]} " --mypy_grpc_out=generate_concrete_servicer_stubs:test/generated_concrete
137137
138138 # Generate with sync_only stubs for testing
139- find proto/testproto/grpc -name " *.proto" -print0 | xargs -0 " $PROTOC " " ${PROTOC_ARGS[@]} " --mypy_grpc_out=only_sync:test/generated_sync_only --mypy_out=test/generated_sync_only --python_out=test/generated_sync_only
139+ find proto/testproto -name " *.proto" -print0 | xargs -0 " $PROTOC " " ${PROTOC_ARGS[@]} " --mypy_grpc_out=only_sync:test/generated_sync_only --mypy_out=test/generated_sync_only --python_out=test/generated_sync_only
140140
141141 # Generate with async_only stubs for testing
142- find proto/testproto/grpc -name " *.proto" -print0 | xargs -0 " $PROTOC " " ${PROTOC_ARGS[@]} " --mypy_grpc_out=only_async:test/generated_async_only --mypy_out=test/generated_async_only --python_out=test/generated_async_only
142+ find proto/testproto -name " *.proto" -print0 | xargs -0 " $PROTOC " " ${PROTOC_ARGS[@]} " --mypy_grpc_out=only_async:test/generated_async_only --mypy_out=test/generated_async_only --python_out=test/generated_async_only
143143
144144 if [[ -n $VALIDATE ]] && ! diff <( echo " $SHA_BEFORE " ) <( find test/generated -name " *.pyi" -print0 | xargs -0 sha1sum) ; then
145145 echo -e " ${RED} Some .pyi files did not match. Please commit those files${NC} "
You can’t perform that action at this time.
0 commit comments