浏览代码

feat: update musl logic with node-rs packages (#322)

Ranger 2 年之前
父节点
当前提交
588790d121
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      index.js

+ 2 - 1
index.js

@@ -11,7 +11,8 @@ function isMusl() {
   // For Node 10
   if (!process.report || typeof process.report.getReport !== 'function') {
     try {
-      return readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
+      const lddPath = require('child_process').execSync('which ldd').toString().trim()
+      return readFileSync(lddPath, 'utf8').includes('musl')
     } catch (e) {
       return true
     }