Copilot commented on code in PR #7916: URL: https://github.com/apache/ignite-3/pull/7916#discussion_r3027301533
########## gradlew: ########## @@ -114,7 +114,7 @@ case "$( uname )" in #( NONSTOP* ) nonstop=true ;; esac -CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar +CLASSPATH="\\\"\\\"" Review Comment: `CLASSPATH` is set to the literal string `\"\"`, which then gets passed through `cygpath` and into `java -classpath ...`. On Cygwin/MSYS this is not a valid path and is likely to make the wrapper fail before Gradle even starts. Set `CLASSPATH` to the actual wrapper JAR path (as in the standard Gradle wrapper script), or remove the `-classpath`/`cygpath` handling entirely if you intend to run via `-jar` only. ```suggestion CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
