From be8d3bdbcd08eeee7d19d3d4eaabd7e78118a7ba Mon Sep 17 00:00:00 2001 From: Ismael Juma Date: Tue, 21 Apr 2020 06:25:42 -0700 Subject: [PATCH] Replace `./gradlew installAll` with `./gradlewAll install and remove invocation of `gradle` See https://github.com/apache/kafka/pull/7677 for more details with regards to the former and https://github.com/apache/kafka/pull/6031 with regards to the latter. --- README.md | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/README.md b/README.md index 5ac6edaf63..67685cc018 100644 --- a/README.md +++ b/README.md @@ -185,11 +185,8 @@ repository may have different Kafka requirements. > $ cd kafka > $ git checkout trunk > -> # Bootstrap gradle wrapper -> $ gradle -> > # Now build and install Kafka locally -> $ ./gradlew clean installAll +> $ ./gradlew clean && ./gradlewAll install > ```