From c6deececa7b6d2568bd5f3224fad704de9f83e8e Mon Sep 17 00:00:00 2001 From: LisaFC Date: Wed, 25 Feb 2015 22:34:56 +0000 Subject: [PATCH] changed gradle command to ./gradlew --- javatutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javatutorial.md b/javatutorial.md index 05c122b8fc..d4f3216d46 100644 --- a/javatutorial.md +++ b/javatutorial.md @@ -101,7 +101,7 @@ Next we need to generate the gRPC client and server interfaces from our .proto s For simplicity, we've provided a [Gradle build file](https://github.com/grpc/grpc-java/blob/master/examples/build.gradle) that runs `protoc` for you with the appropriate plugin, input, and output (if you want to run this yourself, make sure you've installed protoc and followed the gRPC code [installation instructions](https://github.com/grpc/grpc-java) first): ```shell -gradle build +../gradlew build ``` which actually runs: