Skip to content

Commit

Permalink
HOP-303 (#134)
Browse files Browse the repository at this point in the history
Fix startup scripts for windows
  • Loading branch information
hansva committed May 7, 2020
1 parent 80a2eb1 commit f8cd48e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions assemblies/static/src/main/resources/hop-gui.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ set HOP_OPTIONS=%HOP_OPTIONS% "-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:
REM Pass HOP variables if they're set.
if not "%HOP_AUDIT_DIRECTORY%"=="" (
set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_AUDIT_DIRECTORY="%HOP_AUDIT_DIRECTORY%
}
)
if not "%HOP_CONFIG_DIRECTORY%"=="" (
set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_CONFIG_DIRECTORY="%HOP_CONFIG_DIRECTORY%
}
)

@echo on
%_HOP_JAVA% -classpath %LIBSPATH%\*;%SWTJAR%\* "-Djava.library.path=%LIBSPATH%" %HOP_OPTIONS% org.apache.hop.ui.hopgui.HopGui
Expand Down
4 changes: 2 additions & 2 deletions assemblies/static/src/main/resources/hop-run.bat
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ set HOP_OPTIONS=%HOP_OPTIONS% "-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:
REM Pass HOP variables if they're set.
if not "%HOP_AUDIT_DIRECTORY%"=="" (
set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_AUDIT_DIRECTORY="%HOP_AUDIT_DIRECTORY%
}
)
if not "%HOP_CONFIG_DIRECTORY%"=="" (
set HOP_OPTIONS=%HOP_OPTIONS% "-DHOP_CONFIG_DIRECTORY="%HOP_CONFIG_DIRECTORY%
}
)
@echo on
%_HOP_JAVA% -classpath %LIBSPATH%\*;%SWTJAR%\* "-Djava.library.path=%LIBSPATH%" %HOP_OPTIONS% org.apache.hop.run.HopRun
@echo off

0 comments on commit f8cd48e

Please sign in to comment.