From 82e9cbab2d8eb8c672a18d20f15f8a654d996bcf Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Tue, 25 Nov 2025 08:54:34 +0100 Subject: [PATCH] feat: check bindgen --no to prevent install --- src/utils/build.rust.utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/build.rust.utils.ts b/src/utils/build.rust.utils.ts index eee53ec1..599b13df 100644 --- a/src/utils/build.rust.utils.ts +++ b/src/utils/build.rust.utils.ts @@ -62,7 +62,7 @@ export const checkBindgen = async (): Promise<{valid: boolean}> => { const {valid} = await checkToolInstalled({ command, - args: ['icp-bindgen', '--version'] + args: ['icp-bindgen', '--version', ...(command === 'npx' ? ['--no'] : [])] }); if (valid === false) {