From d58a9050333b883154f548cd570fd72b178d4edb Mon Sep 17 00:00:00 2001 From: nojaf Date: Fri, 26 Sep 2025 09:59:34 +0200 Subject: [PATCH] Use bsc_path to return bsc.exe --- server/src/utils.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/utils.ts b/server/src/utils.ts index 12457d982..3d44ccd5c 100644 --- a/server/src/utils.ts +++ b/server/src/utils.ts @@ -100,8 +100,8 @@ let findBinary = async ( ); const contents = await fsAsync.readFile(compilerInfo, "utf8"); const compileInfo = JSON.parse(contents); - if (compileInfo && compileInfo.runtime_path) { - return compileInfo.runtime_path; + if (compileInfo && compileInfo.bsc_path) { + return compileInfo.bsc_path; } } catch {} }