mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-15 13:43:40 +02:00
16 lines
322 B
JavaScript
16 lines
322 B
JavaScript
|
|
module.exports = exports = copy
|
|
|
|
exports.usage = 'Copies a compiled bindings to an appropriate dir for runtime detection'
|
|
|
|
/**
|
|
* Module dependencies.
|
|
*/
|
|
|
|
var fs = require('fs')
|
|
, path = require('path')
|
|
, mkdir = require('mkdirp')
|
|
|
|
function copy (gyp, argv, callback) {
|
|
callback(new Error('TODO: implement me'))
|
|
}
|