aboutsummaryrefslogtreecommitdiff
path: root/calculate_average_thomaswue.sh
diff options
context:
space:
mode:
Diffstat (limited to 'calculate_average_thomaswue.sh')
-rwxr-xr-xcalculate_average_thomaswue.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/calculate_average_thomaswue.sh b/calculate_average_thomaswue.sh
index d875f8a..87a4fc4 100755
--- a/calculate_average_thomaswue.sh
+++ b/calculate_average_thomaswue.sh
@@ -18,12 +18,10 @@
if [ -f ./image_calculateaverage_thomaswue ]; then
echo "Picking up existing native image, delete the file to select JVM mode." 1>&2
- time ./image_calculateaverage_thomaswue
+ ./image_calculateaverage_thomaswue
else
- source "$HOME/.sdkman/bin/sdkman-init.sh"
- sdk use java 21.0.1-graal 1>&2
JAVA_OPTS="--enable-preview"
echo "Chosing to run the app in JVM mode as no native image was found, use additional_build_step_thomaswue.sh to generate." 1>&2
- time java $JAVA_OPTS --class-path target/average-1.0.0-SNAPSHOT.jar dev.morling.onebrc.CalculateAverage_thomaswue
+ java $JAVA_OPTS --class-path target/average-1.0.0-SNAPSHOT.jar dev.morling.onebrc.CalculateAverage_thomaswue
fi