Skip to content

Commit 292b2f7

Browse files
paper: Fix boolean flag always return true (#4134)
1 parent 82043d5 commit 292b2f7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/start-deployPaper

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ elif [[ $PAPER_DOWNLOAD_URL ]]; then
2424
--url="$PAPER_DOWNLOAD_URL"
2525
)
2626

27-
if [[ $CLEAN_SERVER_LIBRARIES ]]; then
27+
if isTrue $CLEAN_SERVER_LIBRARIES; then
2828
args+=(--clean-libraries)
2929
fi
3030

@@ -45,7 +45,7 @@ else
4545
args+=(--build="$PAPER_BUILD")
4646
fi
4747

48-
if [[ $CLEAN_SERVER_LIBRARIES ]]; then
48+
if isTrue $CLEAN_SERVER_LIBRARIES; then
4949
args+=(--clean-libraries)
5050
fi
5151

0 commit comments

Comments
 (0)