summaryrefslogtreecommitdiff
path: root/node_modules/detect-libc/bin/detect-libc.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/detect-libc/bin/detect-libc.js')
-rw-r--r--node_modules/detect-libc/bin/detect-libc.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/node_modules/detect-libc/bin/detect-libc.js b/node_modules/detect-libc/bin/detect-libc.js
deleted file mode 100644
index 5486127..0000000
--- a/node_modules/detect-libc/bin/detect-libc.js
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/usr/bin/env node
-
-'use strict';
-
-var spawnSync = require('child_process').spawnSync;
-var libc = require('../');
-
-var spawnOptions = {
- env: process.env,
- shell: true,
- stdio: 'inherit'
-};
-
-if (libc.isNonGlibcLinux) {
- spawnOptions.env.LIBC = process.env.LIBC || libc.family;
-}
-
-process.exit(spawnSync(process.argv[2], process.argv.slice(3), spawnOptions).status);