MINOR: jmh.sh swallows compile errors (#11870)

jmh.sh runs tasks in quiet mode which swallows compiler errors. This is a pain and I frequently have to edit the shell script to see the error.

Reviewers:  Ismael Juma <ismael@confluent.io>, Bill Bejeck <bbejeck@apache.org>
This commit is contained in:
Lucas Bradstreet 2022-03-10 15:18:41 -08:00 committed by GitHub
parent 4d5a28973f
commit dc36dedd28
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@ fi
gradleCmd="${gradlew_dir}/gradlew"
libDir="${base_dir}/build/libs"
echo "running gradlew :jmh-benchmarks:clean :jmh-benchmarks:shadowJar in quiet mode"
echo "running gradlew :jmh-benchmarks:clean :jmh-benchmarks:shadowJar"
$gradleCmd -q :jmh-benchmarks:clean :jmh-benchmarks:shadowJar
$gradleCmd :jmh-benchmarks:clean :jmh-benchmarks:shadowJar
echo "gradle build done"