From fa2a2ae8ef668f0df36eba7b7e0d372d3ad53299 Mon Sep 17 00:00:00 2001 From: ToMattBan <50156748+ToMattBan@users.noreply.github.com> Date: Thu, 16 Feb 2023 14:56:48 -0300 Subject: [PATCH] Fix node-gyp issue when packing with asar It will solve this problem: https://github.com/siphomateke/deezer/issues/24 More details about the problem here: https://github.com/nodejs/node-gyp/issues/2713 --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index 397cf09..07bc82d 100755 --- a/install.sh +++ b/install.sh @@ -58,6 +58,7 @@ prepare() { patch --forward --strip=1 --input="$srcdir/start-hidden-on-tray.patch" cd .. + rm -rf app/node_modules/abstract-socket/build/node_gyp_bins/python3 asar pack app app.asar }