mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
12 lines
491 B
Diff
12 lines
491 B
Diff
|
--- ./lib/vscode/node_modules/fsevents/install.js
|
||
|
+++ ./lib/vscode/node_modules/fsevents/install.js
|
||
|
@@ -1,7 +1,3 @@
|
||
|
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);
|
||
|
+ process.stdout.write('fsevents disabled on Darwin by Nix build script\n')
|
||
|
}
|