github-pages-deploy-action/node_modules/fsevents/install.js
2019-11-19 07:48:29 -05:00

8 lines
291 B
JavaScript

if (process.platform === 'darwin') {
var spawn = require('child_process').spawn;
var args = ['install', '--fallback-to-build'];
var options = {stdio: 'inherit'};
var child = spawn(require.resolve('node-pre-gyp/bin/node-pre-gyp'), args, options);
child.on('close', process.exit);
}