mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2026-08-12 02:03:17 +00:00
paper: Fix boolean flag always return true (#4134)
This commit is contained in:
@@ -24,7 +24,7 @@ elif [[ $PAPER_DOWNLOAD_URL ]]; then
|
|||||||
--url="$PAPER_DOWNLOAD_URL"
|
--url="$PAPER_DOWNLOAD_URL"
|
||||||
)
|
)
|
||||||
|
|
||||||
if [[ $CLEAN_SERVER_LIBRARIES ]]; then
|
if isTrue $CLEAN_SERVER_LIBRARIES; then
|
||||||
args+=(--clean-libraries)
|
args+=(--clean-libraries)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -45,7 +45,7 @@ else
|
|||||||
args+=(--build="$PAPER_BUILD")
|
args+=(--build="$PAPER_BUILD")
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $CLEAN_SERVER_LIBRARIES ]]; then
|
if isTrue $CLEAN_SERVER_LIBRARIES; then
|
||||||
args+=(--clean-libraries)
|
args+=(--clean-libraries)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user