mirror of
https://github.com/itzg/docker-minecraft-server
synced 2024-12-15 06:42:28 +00:00
Fix PATH to include java when needed
This commit is contained in:
parent
c48f6c31ce
commit
a2ab0d75ed
1 changed files with 5 additions and 0 deletions
|
@ -168,6 +168,11 @@ function copyFilesForCurseForge() {
|
|||
cp -f /data/eula.txt "${FTB_DIR}/"
|
||||
}
|
||||
|
||||
if ! which java > /dev/null; then
|
||||
log "Fixing PATH to include java"
|
||||
PATH="${PATH}:/opt/java/openjdk/bin"
|
||||
fi
|
||||
|
||||
mcServerRunnerArgs="--stop-duration ${STOP_DURATION:-60}s"
|
||||
if [[ ${TYPE} == "CURSE_INSTANCE" ]]; then
|
||||
if isTrue ${DEBUG_EXEC}; then
|
||||
|
|
Loading…
Reference in a new issue