Changeset 33932


Ignore:
Timestamp:
2020-02-15T19:14:24+13:00 (4 years ago)
Author:
davidb
Message:

Commented out Java version warning message, as it presents as something that looks like a big issue (just from the number of lines printed out, even though it is marked as a warning, it does so in SCARY ALL CAPS) when it isn't

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/gs3-setup.bat

    r33793 r33932  
    282282:: 5. Last ditch effort: search4j couldn't find any java, but check any Java env vars set anyway
    283283echo     Search4j could not find an appropriate JDK or JRE java.
    284 echo     Attempting to use any JAVA_HOME else JRE_HOME in the environment...
     284echo     Checking for Java explicitly set through environment variables
     285:echo     Attempting to use any JAVA_HOME else JRE_HOME in the environment...
    285286
    286287if exist "!JAVA_HOME!\bin\java.exe" (
     
    288289  set RUNJAVA=!JAVA_HOME!\bin\java.exe
    289290  echo Using Java at !JAVA_HOME!
    290   echo WARNING: Greenstone has not checked the version number of this Java installation
    291   echo          The source distribution of Greenstone3 requires Java 1.5 or greater
    292   echo          SVN users may still use Java 1.4
    293   echo.
     291:  echo WARNING: Greenstone has not checked the version number of this Java installation
     292:  echo          The source distribution of Greenstone3 requires Java 1.5 or greater
     293:  echo          SVN users may still use Java 1.4
     294:  echo.
    294295  goto summaryThenEnd
    295296)
     
    299300  set RUNJAVA=!JRE_HOME!\bin\java.exe
    300301  echo Using Java at !JRE_HOME!
    301   echo WARNING: Greenstone has not checked the version number of this JRE installation
    302   echo          The source distribution of Greenstone3 requires Java 1.5 or greater
    303   echo          SVN users may still use Java 1.4
    304   echo.
     302:  echo WARNING: Greenstone has not checked the version number of this JRE installation
     303:  echo          The source distribution of Greenstone3 requires Java 1.5 or greater
     304:  echo          SVN users may still use Java 1.4
     305:  echo.
    305306  goto summaryThenEnd
    306307)
Note: See TracChangeset for help on using the changeset viewer.