mattcasters commented on issue #7142:
URL: https://github.com/apache/hop/issues/7142#issuecomment-4841959600

   I have a custom script at one location.  Used the `.cmd` extension for the 
"No Log" script.
   Then this change:
   
   ```
   :NormalStart
   REM set java primary is HOP_JAVA_HOME fallback to JAVA_HOME or default java
   if not "%HOP_JAVA_HOME%"=="" (
       set _HOP_JAVA=%HOP_JAVA_HOME%\bin\javaw
   ) else if not "%JAVA_HOME%"=="" (
       set _HOP_JAVA=%JAVA_HOME%\bin\javaw
   ) else (
       set _HOP_JAVA=javaw
   )
   ```
   
   Note the lack of double quotes around the binaries paths.  For some reasons 
those gave me issues.  It's why I haven't created a PR for it.
   
   At the bottom:
   
   ```
   start %_HOP_JAVA% -classpath %CLASSPATH% -Dswt.autoScale=false 
-Djava.library.path=%LIBSPATH% %HOP_OPTIONS% org.apache.hop.ui.hopgui.HopGui
   ```
   
   


-- 
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]

Reply via email to