From 14218404a3843bf0088eb17e7afe03d43bb83d7a Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Tue, 13 Jun 2023 11:01:05 -0700 Subject: [PATCH] fix: update libzmq to the latest version --- script/build.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/build.ts b/script/build.ts index 693d914d..fe93c10b 100644 --- a/script/build.ts +++ b/script/build.ts @@ -7,7 +7,7 @@ const root = dirname(__dirname) function main() { const zmq_rev = // eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing, @typescript-eslint/strict-boolean-expressions - process.env.ZMQ_VERSION || "20de92ac0a2b2b9a1869782a429df68f93c3625e" + process.env.ZMQ_VERSION || "5657b4586f24ec433930e8ece02ddba7afcf0fe0" const src_url = `https://github.com/zeromq/libzmq/archive/${zmq_rev}.tar.gz` const libzmq_build_prefix = `${root}/build/libzmq-staging`