Skip to content

Commit dc36ded

Browse files
authored
MINOR: jmh.sh swallows compile errors (apache#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 <[email protected]>, Bill Bejeck <[email protected]>
1 parent 4d5a289 commit dc36ded

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jmh-benchmarks/jmh.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ fi
2929
gradleCmd="${gradlew_dir}/gradlew"
3030
libDir="${base_dir}/build/libs"
3131

32-
echo "running gradlew :jmh-benchmarks:clean :jmh-benchmarks:shadowJar in quiet mode"
32+
echo "running gradlew :jmh-benchmarks:clean :jmh-benchmarks:shadowJar"
3333

34-
$gradleCmd -q :jmh-benchmarks:clean :jmh-benchmarks:shadowJar
34+
$gradleCmd :jmh-benchmarks:clean :jmh-benchmarks:shadowJar
3535

3636
echo "gradle build done"
3737

0 commit comments

Comments
 (0)