Skip to content

Commit 9f7eee0

Browse files
committed
fix: fix the zmq_draft check
1 parent 40e86a7 commit 9f7eee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

script/build.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ function main() {
6161
}
6262

6363
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/strict-boolean-expressions
64-
if (process.env.ZMQ_DRAFT) {
64+
if (process.env.ZMQ_DRAFT === "true") {
6565
console.log("Enabling draft support")
6666
build_options += " -DENABLE_DRAFTS=ON"
6767
}

0 commit comments

Comments
 (0)