Skip to content

Commit

Permalink
Use --add-modules=ALL-DEFAULT in launcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcsmith-net committed Sep 16, 2024
1 parent cac7e29 commit 8e636ff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions praxiscore-bin/src/assembly/bin/praxis
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,7 @@ if $cygwin; then
fi

exec "$JAVACMD" $JAVA_OPTS \
--add-modules=ALL-DEFAULT \
-p "$REPO" \
-Dapp.name="praxis" \
-Dapp.pid="$$" \
Expand Down
2 changes: 1 addition & 1 deletion praxiscore-bin/src/assembly/bin/praxis.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ if "%REPO%"=="" set REPO=%BASEDIR%\mods
@REM Reaching here means variables are defined and arguments have been captured
:endInit

"%JAVACMD%" %JAVA_OPTS% -p "%REPO%" -Dapp.name="praxis" -Dapp.repo="%REPO%" -Dapp.home="%BASEDIR%" -Dbasedir="%BASEDIR%" -m "org.praxislive.bin/org.praxislive.bin.Main" %CMD_LINE_ARGS%
"%JAVACMD%" %JAVA_OPTS% --add-modules=ALL-DEFAULT -p "%REPO%" -Dapp.name="praxis" -Dapp.repo="%REPO%" -Dapp.home="%BASEDIR%" -Dbasedir="%BASEDIR%" -m "org.praxislive.bin/org.praxislive.bin.Main" %CMD_LINE_ARGS%
if %ERRORLEVEL% NEQ 0 goto error
goto end

Expand Down

0 comments on commit 8e636ff

Please sign in to comment.