From 292b2f757efa46bba5f3819fa6cc61daee6d1d9c Mon Sep 17 00:00:00 2001 From: Harrison Black Date: Fri, 26 Jun 2026 03:36:59 +1000 Subject: [PATCH] paper: Fix boolean flag always return true (#4134) --- scripts/start-deployPaper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/start-deployPaper b/scripts/start-deployPaper index 9907d4a3..e96606af 100755 --- a/scripts/start-deployPaper +++ b/scripts/start-deployPaper @@ -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