File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -85,13 +85,15 @@ case $MODE in
8585 ;;
8686esac
8787
88+ # Clean and create output directory
89+ FINAL_OUTPUT_DIR=" target/benchmark-vers"
90+ rm -rf " $FINAL_OUTPUT_DIR "
91+ mkdir -p " $FINAL_OUTPUT_DIR "
92+
8893# Create temporary directory for results (survives mvn clean)
8994TEMP_OUTPUT_DIR=$( mktemp -d)
9095echo " Using temporary directory: ${TEMP_OUTPUT_DIR} "
9196
92- # Final output directory
93- FINAL_OUTPUT_DIR=" target/benchmark-vers"
94-
9597# JVM flags for Java 9+ module system compatibility
9698JVM_OPTS=" --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.lang.reflect=ALL-UNNAMED --add-opens java.base/java.nio=ALL-UNNAMED --add-exports java.base/jdk.internal.misc=ALL-UNNAMED --add-exports java.base/sun.nio.ch=ALL-UNNAMED --add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED --enable-native-access=ALL-UNNAMED"
9799
You can’t perform that action at this time.
0 commit comments