paper: Fix boolean flag always return true (#4134)

This commit is contained in:
Harrison Black
2026-06-26 03:36:59 +10:00
committed by GitHub
parent 82043d556e
commit 292b2f757e
+2 -2
View File
@@ -24,7 +24,7 @@ elif [[ $PAPER_DOWNLOAD_URL ]]; then
--url="$PAPER_DOWNLOAD_URL"
)
if [[ $CLEAN_SERVER_LIBRARIES ]]; then
if isTrue $CLEAN_SERVER_LIBRARIES; then
args+=(--clean-libraries)
fi
@@ -45,7 +45,7 @@ else
args+=(--build="$PAPER_BUILD")
fi
if [[ $CLEAN_SERVER_LIBRARIES ]]; then
if isTrue $CLEAN_SERVER_LIBRARIES; then
args+=(--clean-libraries)
fi