From bad314851a821861e9d0e2fafe34bbe563beacca Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Thu, 2 Jan 2025 23:56:44 -0800 Subject: [PATCH] fix: force vcpkg system binaries before install --- script/install-deps.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/install-deps.sh b/script/install-deps.sh index 202e0295..e93e55bd 100755 --- a/script/install-deps.sh +++ b/script/install-deps.sh @@ -64,11 +64,12 @@ fi # pnpm npm i -g pnpm +export VCPKG_FORCE_SYSTEM_BINARIES=1 + # vcpkg npx -y setup-cpp --vcpkg "ee2d2a100103e0f3613c60655dcf15be7d5157b8" # zeromq -export VCPKG_FORCE_SYSTEM_BINARIES=1 cd ~/vcpkg || exit 1 ~/vcpkg/vcpkg install 'zeromq[draft,curve,sodium]' || (cd - || exit 1) cd - || exit 1