Procházet zdrojové kódy

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

Ranger před 2 roky
rodič
revize
588790d121
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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
     }