mirror of
https://github.com/nodejs/node.git
synced 2025-05-19 11:32:42 +00:00

PR-URL: https://github.com/iojs/io.js/pull/1080 Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
7 lines
172 B
Bash
Executable File
7 lines
172 B
Bash
Executable File
#!/usr/bin/env sh
|
|
if [ "x$npm_config_node_gyp" = "x" ]; then
|
|
node "`dirname "$0"`/../../node_modules/node-gyp/bin/node-gyp.js" "$@"
|
|
else
|
|
"$npm_config_node_gyp" "$@"
|
|
fi
|