mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-18 06:43:39 +02:00
19 lines
225 B
JavaScript
Executable file
19 lines
225 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Set the title.
|
|
*/
|
|
|
|
process.title = 'node-gyp'
|
|
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
|
|
var gyp = require('../lib/node-gyp')()
|
|
|
|
/**
|
|
* Process and execute the selected command.
|
|
*/
|
|
|
|
gyp.run(process.argv)
|