From ea7e75ee743d8a06a35ebc8189df66c0bda0b5cd Mon Sep 17 00:00:00 2001 From: Suyan Date: Thu, 30 Mar 2023 20:30:26 +0800 Subject: [PATCH] chore: fix js binding template style (#1550) Signed-off-by: suyanhanx --- cli/src/js-binding-template.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/src/js-binding-template.ts b/cli/src/js-binding-template.ts index 55be45ce..d467104e 100644 --- a/cli/src/js-binding-template.ts +++ b/cli/src/js-binding-template.ts @@ -20,7 +20,7 @@ function isMusl() { // For Node 10 if (!process.report || typeof process.report.getReport !== 'function') { try { - const lddPath = require('child_process').execSync('which ldd').toString().trim(); + const lddPath = require('child_process').execSync('which ldd').toString().trim() return readFileSync(lddPath, 'utf8').includes('musl') } catch (e) { return true