On Tue, 17 Jun 2025 16:10:49 GMT, Kevin Rushforth <k...@openjdk.org> wrote:
>> Ambarish Rapte has updated the pull request with a new target base due to a >> merge or a rebase. The incremental webrev excludes the unrelated changes >> brought in by the merge/rebase. The pull request contains five additional >> commits since the last revision: >> >> - Merge branch 'master' into jdk24.0.1-gradle8142 >> - javadoc 24 sha256 >> - chmod 644 gradlew >> - result of sh gradlew wrapper --gradle-version 8.14.2 >> - manual changes > > gradlew line 117: > >> 115: esac >> 116: >> 117: CLASSPATH="\\\"\\\"" > > This is from the gradle distribution? It looks odd... Yes, it seems to be an empty string, added when this command is run: `sh gradlew wrapper --gradle-version 8.14.2`. Earlier the gradle-wrapper.jar was used in classpath, but now it is used with -jar option. so CLASSPATH is kept empty. ------------- PR Review Comment: https://git.openjdk.org/jfx/pull/1832#discussion_r2153356003