| @REM |
| @REM Copyright (c) 2018, 2021 Oracle and/or its affiliates. All rights reserved. |
| @REM |
| @REM This program and the accompanying materials are made available under the |
| @REM terms of the Eclipse Public License v. 2.0 which is available at |
| @REM http://www.eclipse.org/legal/epl-2.0, |
| @REM or the Eclipse Distribution License v. 1.0 which is available at |
| @REM http://www.eclipse.org/org/documents/edl-v10.php. |
| @REM |
| @REM SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause |
| @REM |
| |
| @REM User MUST set JAVA_HOME to point a supported JRE. If none |
| @REM is provided for INSTALL_JAVA_HOME then the system JAVA_HOME |
| @REM value will be used |
| set INSTALL_JAVA_HOME=%s_jreDirectory% |
| if "%JAVA_HOME%"=="" ( |
| set JAVA_HOME=%INSTALL_JAVA_HOME% |
| ) |
| |
| @REM Please do not change any of the following lines: |
| |
| set _FIXPATH= |
| call :fixpath "%JAVA_HOME%" |
| set JAVA_HOME=%_FIXPATH:~1% |
| goto :EOF |
| |
| :fixpath |
| if not %1.==. ( |
| for /f "tokens=1* delims=;" %%a in (%1) do ( |
| call :shortfilename "%%a" & call :fixpath "%%b" |
| ) |
| ) |
| goto :EOF |
| :shortfilename |
| for %%i in (%1) do set _FIXPATH=%_FIXPATH%;%%~fsi |
| goto :EOF |