mirror of
https://github.com/Sheldan/Sissi.git
synced 2026-01-26 19:21:43 +00:00
7 lines
240 B
Bash
7 lines
240 B
Bash
#!/bin/sh
|
|
DEBUG_PARAMS=""
|
|
if [ "x$REMOTE_DEBUG" = 'xtrue' ]; then
|
|
DEBUG_PARAMS="-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005"
|
|
echo "Starting with remote debugging on port 5005"
|
|
fi;
|
|
java ${DEBUG_PARAMS} -jar app.jar |