We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a0daf0 commit 39373e1Copy full SHA for 39373e1
nix/any-darwin.nix
@@ -177,7 +177,8 @@ in rec {
177
echo 'Deleting all redundant ‘*.node’ files under to-be-distributed ‘node_modules/’:'
178
(
179
cd $out/Applications/*/Contents/
180
- find Resources/app/node_modules -type f '(' -name '*.node' -o -name '*.o' ')' -exec rm -vf '{}' ';'
+ find Resources/ -name '*.node' -exec rm -vf '{}' ';'
181
+ find Resources/app/node_modules -type f '(' -name '*.o' -o -name '*.o.d' -o -name '*.target.mk' -o -name '*.Makefile' -o -name 'Makefile' -o -name 'config.gypi' ')' -exec rm -vf '{}' ';'
182
sed -r 's#try: \[#\0 [process.env.DAEDALUS_INSTALL_DIRECTORY, "bindings"],#' -i Resources/app/node_modules/bindings/bindings.js
183
)
184
0 commit comments